Home
last modified time | relevance | path

Searched refs:lastType (Results 1 – 3 of 3) sorted by relevance

/src/contrib/llvm-project/clang/utils/TableGen/
H A DClangTypeNodesEmitter.cpp95 void emitLastNodeInvocation(TypeNode lastType);
138 TypeNode lastType; in emitNodeInvocations() local
170 lastType = type; in emitNodeInvocations()
173 emitLastNodeInvocation(lastType); in emitNodeInvocations()
/src/contrib/llvm-project/lld/COFF/
H A DWriter.cpp562 std::optional<chpe_range_type> lastType; in createECCodeMap() local
566 if (lastType) { in createECCodeMap()
567 codeMap.push_back({first, last, *lastType}); in createECCodeMap()
568 lastType.reset(); in createECCodeMap()
580 if (chunkType != lastType) { in createECCodeMap()
583 lastType = chunkType; in createECCodeMap()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3401 static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } in classofKind()