Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangTypeNodesEmitter.cpp92 void emitLastNodeInvocation(TypeNode lastType);
135 TypeNode lastType; in emitNodeInvocations() local
167 lastType = type; in emitNodeInvocations()
170 emitLastNodeInvocation(lastType); in emitNodeInvocations()
/freebsd/contrib/llvm-project/lld/COFF/
H A DWriter.cpp593 std::optional<chpe_range_type> lastType; in createECCodeMap() local
597 if (lastType) { in createECCodeMap()
598 codeMap.push_back({first, last, *lastType}); in createECCodeMap()
599 lastType.reset(); in createECCodeMap()
611 if (chunkType != lastType) { in createECCodeMap()
614 lastType = chunkType; in createECCodeMap()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h3520 static bool classofKind(Kind K) { return K >= firstType && K <= lastType; } in classofKind()