| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | Token.h | 120 bool isAnnotation() const { return tok::isAnnotation(getKind()); } in isAnnotation() function 135 assert(!isAnnotation() && "Annotation tokens have no length field"); in getLength() 141 assert(!isAnnotation() && "Annotation tokens have no length field"); in setLength() 146 assert(isAnnotation() && "Used AnnotEndLocID on non-annotation token"); in getAnnotationEndLoc() 150 assert(isAnnotation() && "Used AnnotEndLocID on non-annotation token"); in setAnnotationEndLoc() 155 return isAnnotation() ? getAnnotationEndLoc() : getLocation(); in getLastLoc() 159 return isAnnotation() ? getAnnotationEndLoc() in getEndLoc() 189 assert(!isAnnotation() && in getIdentifierInfo() 234 assert(isAnnotation() && "Used AnnotVal on non-annotation token"); in getAnnotationValue() 238 assert(isAnnotation() && "Used AnnotVal on non-annotation token"); in setAnnotationValue()
|
| H A D | Preprocessor.h | 99 assert(!tok::isAnnotation(Kind) && "Annotations are not supported."); in TokenValue() 1855 assert(Tok.isAnnotation() && "Expected annotation token"); in AnnotateCachedTokens() 1887 assert(Tok.isAnnotation() && "Expected annotation token"); in ReplaceLastTokenWithAnnotation()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | TokenConcatenation.cpp | 165 if (PrevTok.isAnnotation()) in AvoidConcat() 178 if (!PrevTok.isAnnotation() && PrevTok.getIdentifierInfo()) in AvoidConcat() 193 if (Tok.isAnnotation()) { in AvoidConcat()
|
| H A D | PPCaching.cpp | 117 assert(Tok.isAnnotation() && "Expected annotation token"); in AnnotatePreviousCachedTokens()
|
| H A D | PPMacroExpansion.cpp | 862 } else if (!Tok.isAnnotation() && Tok.getIdentifierInfo() != nullptr) { in ReadMacroCallArgumentList() 1401 if (!Tok.isAnnotation() && (II = Tok.getIdentifierInfo())) in ExpectFeatureIdentifierInfo() 1867 if (!Tok.isAnnotation() && Tok.getIdentifierInfo()) in ExpandBuiltinMacro() 1875 if (!Tok.isAnnotation() && Tok.getIdentifierInfo()) in ExpandBuiltinMacro() 1889 if (Tok.isOneOf(tok::eof, tok::eod) || Tok.isAnnotation()) in ExpandBuiltinMacro()
|
| H A D | TokenLexer.cpp | 703 if (!Tok.isAnnotation() && Tok.getIdentifierInfo() != nullptr) { in Lex()
|
| H A D | Preprocessor.cpp | 237 if (!Tok.isAnnotation()) in DumpToken()
|
| H A D | Lexer.cpp | 62 if (isAnnotation()) in isObjCAtKeyword() 71 if (isAnnotation()) in getObjCKeywordID()
|
| H A D | Pragma.cpp | 781 } else if (!Tok.isAnnotation() && Tok.getIdentifierInfo()) { in LexModuleNameComponent()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/ |
| H A D | TokenKinds.cpp | 58 bool tok::isAnnotation(TokenKind Kind) { in isAnnotation() function in tok
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseOpenACC.cpp | 198 if (!Tok.isAnnotation() && Tok.getIdentifierInfo() && in isTokenIdentifierOrKeyword() 340 if (SecondTok.isAnnotation()) { in ParseOpenACCEnterExitDataDirective() 369 if (AtomicClauseToken.isAnnotation()) in ParseOpenACCAtomicKind() 428 if (!SecondTok.isAnnotation() && in ParseOpenACCDirectiveKind() 927 if (getCurToken().isAnnotation()) in ParseOpenACCCacheVarList()
|
| H A D | ParseOpenMP.cpp | 197 Tok.isAnnotation() in parseOpenMPDirectiveKind() 209 Tok.isAnnotation() in parseOpenMPDirectiveKind() 603 OpenMPClauseKind CKind = Tok.isAnnotation() in ParseOpenMPDeclareMapperDirective() 1431 OpenMPClauseKind CKind = Tok.isAnnotation() in ParseOMPDeclareVariantClauses() 1545 OpenMPClauseKind CKind = Tok.isAnnotation() in parseOMPDeclareVariantMatchClause() 1642 OpenMPClauseKind CKind = Tok.isAnnotation() in ParseOpenMPClauses() 2110 Tok.isAnnotation() ? OMPC_unknown in ParseOpenMPDeclarativeDirectiveWithExtDecl() 2150 OpenMPClauseKind CKind = Tok.isAnnotation() in ParseOpenMPDeclarativeDirectiveWithExtDecl() 2546 OpenMPClauseKind CKind = Tok.isAnnotation() in ParseOpenMPDeclarativeOrExecutableDirective() 2641 OpenMPClauseKind CKind = Tok.isAnnotation() in ParseOpenMPDeclarativeOrExecutableDirective() [all …]
|
| H A D | ParseAST.cpp | 73 if (Tok.isAnnotation()) { in print()
|
| H A D | ParseCXXInlineMethods.cpp | 801 assert(Tok.isAnnotation() && "Expected annotation token."); in ParseLexedPragma()
|
| H A D | ParseDeclCXX.cpp | 1598 !Tok.isAnnotation() && Tok.getIdentifierInfo() && in ParseClassSpecifier() 4257 if (!Tok.isAnnotation()) { in TryParseCXX11AttributeIdentifier()
|
| H A D | ParseDecl.cpp | 204 if (Tok.isAnnotation()) in ParseGNUAttributes() 6689 !Tok.isAnnotation() && Tok.getIdentifierInfo() && in ParseDirectDeclarator() 7531 Tok.isNot(tok::raw_identifier) && !Tok.isAnnotation() && in ParseParameterDeclarationClause()
|
| H A D | ParseStmt.cpp | 1450 Tok.isOneOf(tok::semi, tok::r_brace) || Tok.isAnnotation() || in Check()
|
| H A D | Parser.cpp | 2035 Tok.isAnnotation())) { in TryAnnotateTypeOrScopeToken()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TokenKinds.h | 105 bool isAnnotation(TokenKind K);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/ |
| H A D | ClangHighlighter.cpp | 220 if (token.isAnnotation()) in Highlight()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | MacroExpansionContext.cpp | 181 if (Tok.isAnnotation()) in dumpTokenInto()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | PrintPreprocessedOutput.cpp | 678 (Tok.isAnnotation() && !Tok.is(tok::annot_header_unit) && in HandleWhitespaceBeforeTok() 880 } else if (Tok.isAnnotation()) { in PrintPreprocessedTokens()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionSourceCode.cpp | 299 if (token.isAnnotation()) in TokenVerifier()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Syntax/ |
| H A D | Tokens.cpp | 151 assert(!T.isAnnotation()); in Token() 685 if (T.isAnnotation()) in TokenCollector()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 554 if (Tok.isAnnotation()) 594 isTokenBrace() || Tok.is(tok::code_completion) || Tok.isAnnotation(); in isTokenSpecial() 611 assert(Tok.isAnnotation() && "wrong consume method"); in ConsumeAnnotationToken() 965 if (Tok.isAnnotation()) in isObjCInstancetype()
|