| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParsePragma.cpp | 107 Token &Tok) override { in HandlePragma() 108 Token PragmaName = Tok; in HandlePragma() 110 PP.Diag(Tok.getLocation(), diag::warn_pragma_fp_ignored) in HandlePragma() 122 Toks[0].setLocation(Tok.getLocation()); in HandlePragma() 123 Toks[0].setAnnotationEndLoc(Tok.getLocation()); in HandlePragma() 136 Token &Tok) override { in HandlePragma() 147 Token &Tok) override; 560 assert(Tok.is(tok::annot_pragma_unused)); in HandlePragmaUnused() 562 Actions.ActOnPragmaUnused(Tok, getCurScope(), UnusedLoc); in HandlePragmaUnused() 567 assert(Tok.is(tok::annot_pragma_vis)); in HandlePragmaVisibility() [all …]
|
| H A D | Parser.cpp | 57 Tok.startToken(); in Parser() 58 Tok.setKind(tok::eof); in Parser() 77 DiagnosticBuilder Parser::Diag(const Token &Tok, unsigned DiagID) { in Diag() argument 78 return Diag(Tok.getLocation(), DiagID); in Diag() 102 static bool IsCommonTypo(tok::TokenKind ExpectedTok, const Token &Tok) { in IsCommonTypo() argument 105 return Tok.is(tok::colon) || Tok.is(tok::comma); // : or , for ; in IsCommonTypo() 112 if (Tok.is(ExpectedTok) || Tok.is(tok::code_completion)) { in ExpectAndConsume() 118 if (IsCommonTypo(ExpectedTok, Tok)) { in ExpectAndConsume() 119 SourceLocation Loc = Tok.getLocation(); in ExpectAndConsume() 145 : Diag(Tok, DiagID); in ExpectAndConsume() [all …]
|
| H A D | ParseCXXInlineMethods.cpp | 29 assert(Tok.isOneOf(tok::l_brace, tok::colon, tok::kw_try, tok::equal) && in ParseCXXInlineMethodDef() 65 SourceLocation KWEndLoc = Tok.getEndLoc().getLocWithOffset(-1); in ParseCXXInlineMethodDef() 89 if (Tok.is(tok::comma)) { in ParseCXXInlineMethodDef() 138 tok::TokenKind kind = Tok.getKind(); in ParseCXXInlineMethodDef() 158 while (Tok.is(tok::kw_catch)) { in ParseCXXInlineMethodDef() 185 assert(Tok.isOneOf(tok::l_brace, tok::equal) && in ParseCXXNonStaticMemberInitializer() 193 tok::TokenKind kind = Tok.getKind(); in ParseCXXNonStaticMemberInitializer() 195 Toks.push_back(Tok); in ParseCXXNonStaticMemberInitializer() 201 Toks.push_back(Tok); in ParseCXXNonStaticMemberInitializer() 216 Eof.setLocation(Tok.getLocation()); in ParseCXXNonStaticMemberInitializer() [all …]
|
| H A D | ParseObjc.cpp | 30 if (Tok.is(tok::kw___attribute)) { in MaybeSkipAttributes() 32 Diag(Tok, diag::err_objc_postfix_attribute_hint) in MaybeSkipAttributes() 35 Diag(Tok, diag::err_objc_postfix_attribute); in MaybeSkipAttributes() 52 if (Tok.is(tok::code_completion)) { in ParseObjCAtDirectives() 59 switch (Tok.getObjCKeywordID()) { in ParseObjCAtDirectives() 143 ClassNames.push_back(Tok.getIdentifierInfo()); in ParseObjCAtClassDeclaration() 144 ClassLocs.push_back(Tok.getLocation()); in ParseObjCAtClassDeclaration() 149 if (Tok.is(tok::less)) in ParseObjCAtClassDeclaration() 215 assert(Tok.isObjCAtKeyword(tok::objc_interface) && in ParseObjCAtInterfaceDeclaration() 221 if (Tok.is(tok::code_completion)) { in ParseObjCAtInterfaceDeclaration() [all …]
|
| H A D | ParseOpenMP.cpp | 182 Token Tok = P.getCurToken(); in parseOpenMPDirectiveKind() local 184 Tok.isAnnotation() in parseOpenMPDirectiveKind() 186 : getOpenMPDirectiveKindEx(P.getPreprocessor().getSpelling(Tok)); in parseOpenMPDirectiveKind() 194 Tok = P.getPreprocessor().LookAhead(0); in parseOpenMPDirectiveKind() 196 Tok.isAnnotation() in parseOpenMPDirectiveKind() 198 : getOpenMPDirectiveKindEx(P.getPreprocessor().getSpelling(Tok)); in parseOpenMPDirectiveKind() 213 Token Tok = P.getCurToken(); in parseOpenMPReductionId() local 218 if (Tok.is(tok::kw_operator)) { in parseOpenMPReductionId() 220 Tok = P.getCurToken(); in parseOpenMPReductionId() 223 switch (Tok.getKind()) { in parseOpenMPReductionId() [all …]
|
| H A D | ParseTentative.cpp | 50 switch (Tok.getKind()) { in isCXXDeclarationStatement() 155 switch (Tok.getKind()) { in TryConsumeDeclarationSpecifier() 166 if (Tok.isNot(tok::l_paren)) in TryConsumeDeclarationSpecifier() 194 if (Tok.is(tok::annot_cxxscope)) in TryConsumeDeclarationSpecifier() 196 if (Tok.is(tok::identifier)) in TryConsumeDeclarationSpecifier() 198 else if (Tok.is(tok::annot_template_id)) in TryConsumeDeclarationSpecifier() 210 if (getLangOpts().ObjC && Tok.is(tok::less)) in TryConsumeDeclarationSpecifier() 233 if (Tok.isNot(tok::l_paren)) { in TryParseSimpleDeclaration() 246 if (Tok.isNot(tok::semi) && (!AllowForRangeDecl || Tok.isNot(tok::colon))) in TryParseSimpleDeclaration() 287 if (Tok.isOneOf(tok::kw_asm, tok::kw___attribute)) in TryParseInitDeclaratorList() [all …]
|
| H A D | ParseTemplate.cpp | 42 if (Tok.is(tok::kw_template) && NextToken().isNot(tok::less)) { in ParseDeclarationStartingWithTemplate() 77 assert(Tok.isOneOf(tok::kw_export, tok::kw_template) && in ParseTemplateDeclarationOrSpecialization() 121 Diag(Tok.getLocation(), diag::err_expected_template); in ParseTemplateDeclarationOrSpecialization() 160 } while (Tok.isOneOf(tok::kw_export, tok::kw_template)); in ParseTemplateDeclarationOrSpecialization() 163 if (Tok.is(tok::kw_concept)) in ParseTemplateDeclarationOrSpecialization() 192 if (Tok.is(tok::kw_static_assert)) { in ParseSingleDeclarationAfterTemplate() 194 Diag(Tok.getLocation(), diag::err_templated_invalid_declaration) in ParseSingleDeclarationAfterTemplate() 210 if (Tok.is(tok::kw_using)) { in ParseSingleDeclarationAfterTemplate() 225 if (Tok.is(tok::semi)) { in ParseSingleDeclarationAfterTemplate() 256 if (Tok.is(tok::semi)) in ParseSingleDeclarationAfterTemplate() [all …]
|
| H A D | ParseInit.cpp | 29 switch (Tok.getKind()) { in MayBeDesignationStart() 103 return Tok.is(tok::equal); in MayBeDesignationStart() 167 if (Tok.is(tok::identifier)) { in ParseInitializerWithPotentialDesignator() 168 const IdentifierInfo *FieldName = Tok.getIdentifierInfo(); in ParseInitializerWithPotentialDesignator() 176 assert(Tok.is(tok::colon) && "MayBeDesignationStart not working properly!"); in ParseInitializerWithPotentialDesignator() 186 Tok.getLocation(), DesignatorCompletion.PreferredBaseType, D); in ParseInitializerWithPotentialDesignator() 197 while (Tok.is(tok::period) || Tok.is(tok::l_square)) { in ParseInitializerWithPotentialDesignator() 198 if (Tok.is(tok::period)) { in ParseInitializerWithPotentialDesignator() 202 if (Tok.is(tok::code_completion)) { in ParseInitializerWithPotentialDesignator() 208 if (Tok.isNot(tok::identifier)) { in ParseInitializerWithPotentialDesignator() [all …]
|
| H A D | ParseStmt.cpp | 170 tok::TokenKind Kind = Tok.getKind(); in ParseStatementOrDeclarationAfterAttributes() 201 if (Tok.is(tok::semi)) in ParseStatementOrDeclarationAfterAttributes() 207 if (Tok.isNot(tok::identifier)) in ParseStatementOrDeclarationAfterAttributes() 224 SourceLocation DeclStart = Tok.getLocation(), DeclEnd; in ParseStatementOrDeclarationAfterAttributes() 238 if (Tok.is(tok::r_brace)) { in ParseStatementOrDeclarationAfterAttributes() 239 Diag(Tok, diag::err_expected_statement); in ParseStatementOrDeclarationAfterAttributes() 247 GNUAttributeLoc = Tok.getLocation(); in ParseStatementOrDeclarationAfterAttributes() 260 bool HasLeadingEmptyMacro = Tok.hasLeadingEmptyMacro(); in ParseStatementOrDeclarationAfterAttributes() 366 Diag(Tok, diag::err_pragma_file_or_compound_scope) << "fp_contract"; in ParseStatementOrDeclarationAfterAttributes() 372 Diag(Tok, diag::err_pragma_file_or_compound_scope) << "clang fp"; in ParseStatementOrDeclarationAfterAttributes() [all …]
|
| H A D | ParseDeclCXX.cpp | 61 assert(Tok.is(tok::kw_namespace) && "Not a namespace!"); in ParseNamespace() 65 if (Tok.is(tok::code_completion)) { in ParseNamespace() 79 Diag(Tok.getLocation(), getLangOpts().CPlusPlus17 in ParseNamespace() 83 attrLoc = Tok.getLocation(); in ParseNamespace() 87 if (Tok.is(tok::identifier)) { in ParseNamespace() 88 Ident = Tok.getIdentifierInfo(); in ParseNamespace() 90 while (Tok.is(tok::coloncolon) && in ParseNamespace() 98 if (Tok.is(tok::kw_inline)) { in ParseNamespace() 104 Info.Ident = Tok.getIdentifierInfo(); in ParseNamespace() 116 if (Tok.is(tok::kw___attribute)) { in ParseNamespace() [all …]
|
| H A D | ParseExpr.cpp | 161 if (Tok.is(tok::code_completion)) { in ParseAssignmentExpression() 164 PreferredType.get(Tok.getLocation())); in ParseAssignmentExpression() 168 if (Tok.is(tok::kw_throw)) in ParseAssignmentExpression() 170 if (Tok.is(tok::kw_co_yield)) in ParseAssignmentExpression() 289 getBinOpPrecedence(Tok.getKind(), GreaterThanIsOperator, in ParseConstraintLogicalAndExpression() 293 Tok.isOneOf(tok::period, tok::plusplus, tok::minusminus) || in ParseConstraintLogicalAndExpression() 294 (Tok.is(tok::l_square) && !NextToken().is(tok::l_square))) { in ParseConstraintLogicalAndExpression() 302 Actions.CheckConstraintExpression(E.get(), Tok, &PossibleNonPrimary, in ParseConstraintLogicalAndExpression() 319 while (Tok.is(tok::ampamp)) { in ParseConstraintLogicalAndExpression() 353 while (Tok.is(tok::pipepipe)) { in ParseConstraintLogicalOrExpression() [all …]
|
| H A D | ParseDecl.cpp | 168 assert(Tok.is(tok::kw___attribute) && "Not a GNU attribute list!"); in ParseGNUAttributes() 170 SourceLocation StartLoc = Tok.getLocation(), Loc; in ParseGNUAttributes() 175 while (Tok.is(tok::kw___attribute)) { in ParseGNUAttributes() 196 if (Tok.isAnnotation()) in ParseGNUAttributes() 198 IdentifierInfo *AttrName = Tok.getIdentifierInfo(); in ParseGNUAttributes() 204 if (Tok.isNot(tok::l_paren)) { in ParseGNUAttributes() 229 LA->Toks.push_back(Tok); in ParseGNUAttributes() 236 Eof.setLocation(Tok.getLocation()); in ParseGNUAttributes() 238 } while (Tok.is(tok::comma)); in ParseGNUAttributes() 242 SourceLocation Loc = Tok.getLocation(); in ParseGNUAttributes() [all …]
|
| H A D | ParseStmtAsm.cpp | 186 const Token &Tok = AsmToks[TokIndex]; in translateLocation() local 187 Loc = Tok.getLocation(); in translateLocation() 213 LineToks.push_back(Tok); in ParseMSAsmIdentifier() 233 if (Tok.is(tok::kw_this)) { in ParseMSAsmIdentifier() 251 while (Result.isUsable() && Tok.is(tok::period)) { in ParseMSAsmIdentifier() 256 IdentifierInfo *Id = Tok.getIdentifierInfo(); in ParseMSAsmIdentifier() 259 Tok.getLocation()); in ParseMSAsmIdentifier() 264 if (Tok.is(EndOfStream)) { in ParseMSAsmIdentifier() 267 while (LineToks[LineIndex].getLocation() != Tok.getLocation()) { in ParseMSAsmIdentifier() 275 if (Invalid || Tok.is(EndOfStream)) { in ParseMSAsmIdentifier() [all …]
|
| H A D | ParseExprCXX.cpp | 94 TemplateName.setIdentifier(&II, Tok.getLocation()); in CheckForTemplateAndDigraph() 161 if (Tok.is(tok::annot_cxxscope)) { in ParseOptionalCXXScopeSpecifier() 164 Actions.RestoreNestedNameSpecifierAnnotation(Tok.getAnnotationValue(), in ParseOptionalCXXScopeSpecifier() 165 Tok.getAnnotationRange(), in ParseOptionalCXXScopeSpecifier() 183 if (Tok.is(tok::coloncolon)) { in ParseOptionalCXXScopeSpecifier() 202 if (Tok.is(tok::kw___super)) { in ParseOptionalCXXScopeSpecifier() 204 if (!Tok.is(tok::coloncolon)) { in ParseOptionalCXXScopeSpecifier() 205 Diag(Tok.getLocation(), diag::err_expected_coloncolon_after_super); in ParseOptionalCXXScopeSpecifier() 213 Tok.isOneOf(tok::kw_decltype, tok::annot_decltype)) { in ParseOptionalCXXScopeSpecifier() 215 SourceLocation DeclLoc = Tok.getLocation(); in ParseOptionalCXXScopeSpecifier() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | Pragma.cpp | 107 PragmaIntroducer Introducer, Token &Tok) { in HandlePragma() argument 110 PP.LexUnexpandedToken(Tok); in HandlePragma() 114 = FindHandler(Tok.getIdentifierInfo() ? Tok.getIdentifierInfo()->getName() in HandlePragma() 118 PP.Diag(Tok, diag::warn_pragma_ignored); in HandlePragma() 123 Handler->HandlePragma(PP, Introducer, Tok); in HandlePragma() 138 Token &Tok; member 142 Tokens.push_back(Tok); in lex() 143 Self.Lex(Tok); in lex() 153 Toks[Tokens.size() - 1] = Tok; in revert() 159 Tok = *Tokens.begin(); in revert() [all …]
|
| H A D | PPMacroExpansion.cpp | 541 Callbacks->MacroExpands(Info.Tok, Info.MD, Info.Range, in HandleMacroExpandedIdentifier() 769 Token Tok; in ReadMacroCallArgumentList() local 773 LexUnexpandedToken(Tok); in ReadMacroCallArgumentList() 774 assert(Tok.is(tok::l_paren) && "Error computing l-paren-ness?"); in ReadMacroCallArgumentList() 786 while (Tok.isNot(tok::r_paren)) { in ReadMacroCallArgumentList() 787 if (ContainsCodeCompletionTok && Tok.isOneOf(tok::eof, tok::eod)) in ReadMacroCallArgumentList() 790 assert(Tok.isOneOf(tok::l_paren, tok::comma) && in ReadMacroCallArgumentList() 794 SourceLocation ArgStartLoc = Tok.getLocation(); in ReadMacroCallArgumentList() 803 LexUnexpandedToken(Tok); in ReadMacroCallArgumentList() 805 if (Tok.isOneOf(tok::eof, tok::eod)) { // "#if f(<eof>" & "#if f(\n" in ReadMacroCallArgumentList() [all …]
|
| H A D | TokenConcatenation.cpp | 47 bool TokenConcatenation::IsIdentifierStringPrefix(const Token &Tok) const { in IsIdentifierStringPrefix() 50 if (!Tok.needsCleaning()) { in IsIdentifierStringPrefix() 51 if (Tok.getLength() < 1 || Tok.getLength() > 3) in IsIdentifierStringPrefix() 54 const char *Ptr = SM.getCharacterData(SM.getSpellingLoc(Tok.getLocation())); in IsIdentifierStringPrefix() 55 return IsStringPrefix(StringRef(Ptr, Tok.getLength()), in IsIdentifierStringPrefix() 59 if (Tok.getLength() < 256) { in IsIdentifierStringPrefix() 62 unsigned length = PP.getSpelling(Tok, TokPtr); in IsIdentifierStringPrefix() 66 return IsStringPrefix(StringRef(PP.getSpelling(Tok)), LangOpts.CPlusPlus11); in IsIdentifierStringPrefix() 128 static char GetFirstChar(const Preprocessor &PP, const Token &Tok) { in GetFirstChar() argument 129 if (IdentifierInfo *II = Tok.getIdentifierInfo()) { in GetFirstChar() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | CommentParser.cpp | 59 const Token &Tok = Toks[Pos.CurToken]; in setupBuffer() local 61 Pos.BufferStart = Tok.getText().begin(); in setupBuffer() 62 Pos.BufferEnd = Tok.getText().end(); in setupBuffer() 64 Pos.BufferStartLoc = Tok.getLocation(); in setupBuffer() 99 if (P.Tok.is(tok::newline)) { in addToken() 101 Token Newline = P.Tok; in addToken() 103 if (P.Tok.isNot(tok::text)) { in addToken() 109 if (P.Tok.isNot(tok::text)) { in addToken() 114 Toks.push_back(P.Tok); in addToken() 153 bool lexWord(Token &Tok) { in lexWord() argument [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
| H A D | COFFModuleDefinition.cpp | 155 } while (Tok.K != Eof); in parse() 162 Tok = Lex.lex(); in read() 165 Tok = Stack.back(); in read() 171 if (Tok.K != Identifier || Tok.Value.getAsInteger(10, *I)) in readAsInt() 178 if (Tok.K != Expected) in expect() 183 void unget() { Stack.push_back(Tok); } in unget() 187 switch (Tok.K) { in parseOne() 193 if (Tok.K != Identifier) { in parseOne() 206 bool IsDll = Tok.K == KwLibrary; // Check before parseName. in parseOne() 226 return createError("unknown directive: " + Tok.Value); in parseOne() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Inclusions/ |
| H A D | HeaderIncludes.cpp | 48 Token Tok; in getOffsetAfterTokenSequence() local 50 Lex.LexFromRawLexer(Tok); in getOffsetAfterTokenSequence() 51 return GetOffsetAfterSequence(SM, Lex, Tok); in getOffsetAfterTokenSequence() 59 Lexer &Lex, StringRef Name, Token &Tok, in checkAndConsumeDirectiveWithName() argument 61 bool Matched = Tok.is(tok::hash) && !Lex.LexFromRawLexer(Tok) && in checkAndConsumeDirectiveWithName() 62 Tok.is(tok::raw_identifier) && in checkAndConsumeDirectiveWithName() 63 Tok.getRawIdentifier() == Name && !Lex.LexFromRawLexer(Tok) && in checkAndConsumeDirectiveWithName() 64 Tok.is(tok::raw_identifier) && in checkAndConsumeDirectiveWithName() 65 (!RawIDName || Tok.getRawIdentifier() == *RawIDName); in checkAndConsumeDirectiveWithName() 67 Lex.LexFromRawLexer(Tok); in checkAndConsumeDirectiveWithName() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Rewrite/ |
| H A D | HTMLRewrite.cpp | 458 Token Tok; in SyntaxHighlight() local 459 L.LexFromRawLexer(Tok); in SyntaxHighlight() 461 while (Tok.isNot(tok::eof)) { in SyntaxHighlight() 464 unsigned TokOffs = SM.getFileOffset(Tok.getLocation()); in SyntaxHighlight() 465 unsigned TokLen = Tok.getLength(); in SyntaxHighlight() 466 switch (Tok.getKind()) { in SyntaxHighlight() 473 PP.LookUpIdentifierInfo(Tok); in SyntaxHighlight() 476 if (Tok.isNot(tok::identifier)) in SyntaxHighlight() 505 if (!Tok.isAtStartOfLine()) in SyntaxHighlight() 511 L.LexFromRawLexer(Tok); in SyntaxHighlight() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Format/ |
| H A D | UnwrappedLineParser.cpp | 86 FakeEOF.Tok.startToken(); in ScopedMacroState() 87 FakeEOF.Tok.setKind(tok::eof); in ScopedMacroState() 329 switch (FormatTok->Tok.getKind()) { in parseCSharpGenericTypeConstraint() 348 switch (FormatTok->Tok.getKind()) { in parseCSharpAttribute() 371 tok::TokenKind kind = FormatTok->Tok.getKind(); in parseLevel() 446 FormatToken *Tok = FormatTok; in calculateBraceTypes() local 447 const FormatToken *PrevTok = Tok->Previous; in calculateBraceTypes() 452 assert(Tok->Tok.is(tok::l_brace)); in calculateBraceTypes() 462 switch (Tok->Tok.getKind()) { in calculateBraceTypes() 475 Tok->setBlockKind(BK_BracedInit); in calculateBraceTypes() [all …]
|
| H A D | NamespaceEndCommentsFixer.cpp | 32 const FormatToken *Tok = NamespaceTok->getNextNonComment(); in computeName() local 36 assert(Tok && Tok->is(tok::l_paren) && "expected an opening parenthesis"); in computeName() 37 Tok = Tok->getNextNonComment(); in computeName() 38 while (Tok && !Tok->isOneOf(tok::r_paren, tok::comma)) { in computeName() 39 name += Tok->TokenText; in computeName() 40 Tok = Tok->getNextNonComment(); in computeName() 47 const FormatToken *FirstNSTok = Tok; in computeName() 48 while (Tok && !Tok->is(tok::l_brace) && !Tok->is(tok::coloncolon)) { in computeName() 49 FirstNSTok = Tok; in computeName() 50 Tok = Tok->getNextNonComment(); in computeName() [all …]
|
| H A D | WhitespaceManager.cpp | 27 WhitespaceManager::Change::Change(const FormatToken &Tok, in Change() argument 35 : Tok(&Tok), CreateReplacement(CreateReplacement), in Change() 46 void WhitespaceManager::replaceWhitespace(FormatToken &Tok, unsigned Newlines, in replaceWhitespace() argument 50 if (Tok.Finalized) in replaceWhitespace() 52 Tok.setDecision((Newlines > 0) ? FD_Break : FD_Continue); in replaceWhitespace() 53 Changes.push_back(Change(Tok, /*CreateReplacement=*/true, Tok.WhitespaceRange, in replaceWhitespace() 55 IsAligned, InPPDirective && !Tok.IsFirst, in replaceWhitespace() 59 void WhitespaceManager::addUntouchableToken(const FormatToken &Tok, in addUntouchableToken() argument 61 if (Tok.Finalized) in addUntouchableToken() 63 Changes.push_back(Change(Tok, /*CreateReplacement=*/false, in addUntouchableToken() [all …]
|
| H A D | UsingDeclarationsSorter.cpp | 90 const FormatToken *Tok = UsingTok->Next; in computeUsingDeclarationLabel() local 91 if (Tok && Tok->is(tok::kw_typename)) { in computeUsingDeclarationLabel() 93 Tok = Tok->Next; in computeUsingDeclarationLabel() 95 if (Tok && Tok->is(tok::coloncolon)) { in computeUsingDeclarationLabel() 97 Tok = Tok->Next; in computeUsingDeclarationLabel() 100 while (Tok && Tok->is(tok::identifier)) { in computeUsingDeclarationLabel() 102 Label.append(Tok->TokenText.str()); in computeUsingDeclarationLabel() 103 Tok = Tok->Next; in computeUsingDeclarationLabel() 104 if (!Tok || Tok->isNot(tok::coloncolon)) in computeUsingDeclarationLabel() 107 Tok = Tok->Next; in computeUsingDeclarationLabel() [all …]
|