Home
last modified time | relevance | path

Searched refs:GetLookAheadToken (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp93 Token SecondToken = GetLookAheadToken(2); in CheckForTemplateAndDigraph()
240 GetLookAheadToken(1).is(tok::ellipsis) && in ParseOptionalCXXScopeSpecifier()
241 GetLookAheadToken(2).is(tok::l_square)) { in ParseOptionalCXXScopeSpecifier()
373 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) { in ParseOptionalCXXScopeSpecifier()
457 if (Next.is(tok::coloncolon) && GetLookAheadToken(2).is(tok::l_brace)) { in ParseOptionalCXXScopeSpecifier()
469 if (CheckForDestructor && GetLookAheadToken(2).is(tok::tilde)) { in ParseOptionalCXXScopeSpecifier()
475 const Token &Next2 = GetLookAheadToken(2); in ParseOptionalCXXScopeSpecifier()
833 const Token After = GetLookAheadToken(2); in TryParseLambdaExpression()
1902 if (GetLookAheadToken(1).is(tok::ellipsis) && in ParseCXXPseudoDestructor()
1903 GetLookAheadToken(2).is(tok::l_square)) { in ParseCXXPseudoDestructor()
[all …]
H A DParseTentative.cpp755 if (GetLookAheadToken(2).is(tok::kw_using)) in isCXX11AttributeSpecifier()
1341 (GetLookAheadToken(Lookahead + 1) in isCXXDeclarationSpecifier()
1363 GetLookAheadToken(Lookahead + 1).isOneOf(tok::amp, tok::ampamp))); in isCXXDeclarationSpecifier()
1367 if (GetLookAheadToken(1).is(tok::ellipsis) && in isCXXDeclarationSpecifier()
1368 GetLookAheadToken(2).is(tok::l_square)) { in isCXXDeclarationSpecifier()
H A DParseTemplate.cpp455 switch (GetLookAheadToken(2).getKind()) { in isStartOfTemplateTypeParameter()
474 !GetLookAheadToken(Tok.is(tok::annot_cxxscope) ? 2 : 1) in isStartOfTemplateTypeParameter()
493 Next = GetLookAheadToken(2); in isStartOfTemplateTypeParameter()
H A DParseObjc.cpp271 !isKnownToBeTypeSpecifier(GetLookAheadToken(1))) { // we have a category. in ParseObjCAtInterfaceDeclaration()
2591 Token AfterAt = GetLookAheadToken(1); in ParseObjCTryStmt()
2924 if (GetLookAheadToken(1).is(tok::l_brace) && in ParseObjCAtExpression()
3043 return GetLookAheadToken(1).is(tok::identifier) && in isSimpleObjCMessageExpression()
3044 GetLookAheadToken(2).is(tok::identifier); in isSimpleObjCMessageExpression()
3064 const Token &AfterNext = GetLookAheadToken(2); in isStartOfObjCClassMessageMissingOpenBracket()
H A DParseDecl.cpp3479 const Token &Next = HasScope ? GetLookAheadToken(2) : NextToken(); in DiagnoseMissingSemiAfterTagDefinition()
3620 !DS.hasTypeSpecifier() && GetLookAheadToken(1).is(tok::less)) in ParseDeclarationSpecifiers()
4305 if (isKnownToBeTypeSpecifier(GetLookAheadToken(1))) { in ParseDeclarationSpecifiers()
6198 GetLookAheadToken(2).isOneOf(tok::kw_auto, tok::kw_decltype); in isDeclarationSpecifier()
7601 GetLookAheadToken(0).is(tok::kw_noexcept) && in ParseFunctionDeclarator()
7602 GetLookAheadToken(1).is(tok::l_paren) && in ParseFunctionDeclarator()
7603 GetLookAheadToken(2).is(tok::kw_noexcept) && in ParseFunctionDeclarator()
7604 GetLookAheadToken(3).is(tok::l_paren) && in ParseFunctionDeclarator()
7605 GetLookAheadToken(4).is(tok::identifier) && in ParseFunctionDeclarator()
7606 GetLookAheadToken(4).getIdentifierInfo()->isStr("swap")) { in ParseFunctionDeclarator()
[all …]
H A DParseStmt.cpp1161 while (GetLookAheadToken(LookAhead).is(tok::semi)) { in handleExprStmt()
1167 IsStmtExprResult = GetLookAheadToken(LookAhead).is(tok::r_brace) && in handleExprStmt()
1168 GetLookAheadToken(LookAhead + 1).is(tok::r_paren); in handleExprStmt()
H A DParseDeclCXX.cpp111 GetLookAheadToken(2).is(tok::identifier)))) { in ParseNamespace()
1078 const Token &T = GetLookAheadToken(I); in ParseStaticAssertDeclaration()
1283 !GetLookAheadToken(2).is(tok::l_square)) { in ParsePackIndexingType()
2886 isAccessDecl = GetLookAheadToken(2).is(tok::semi); in ParseCXXClassMemberDeclaration()
3074 auto &After = GetLookAheadToken(2); in ParseCXXClassMemberDeclaration()
H A DParseExpr.cpp1200 GetLookAheadToken(2).is(tok::l_square)) { in ParseCastExpression()
3256 GetLookAheadToken(1).isNot(tok::period)) { in ParseParenExpression()
H A DParser.cpp657 GetLookAheadToken(2).isNot(tok::coloncolon)) { in ParseTopLevelDecl()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h864 const Token &GetLookAheadToken(unsigned N) { in GetLookAheadToken() function