HomeSort by relevance Sort by last modified time
    Searched refs:l_paren (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/clang/include/clang/Lex/
PTHLexer.h 79 /// tok::l_paren token, 0 if it is something else and 2 if there are no more
83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 79 /// tok::l_paren token, 0 if it is something else and 2 if there are no more
83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 79 /// tok::l_paren token, 0 if it is something else and 2 if there are no more
83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 79 /// tok::l_paren token, 0 if it is something else and 2 if there are no more
83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 79 /// tok::l_paren token, 0 if it is something else and 2 if there are no more
83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 79 /// tok::l_paren token, 0 if it is something else and 2 if there are no more
83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 79 /// tok::l_paren token, 0 if it is something else and 2 if there are no more
83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 79 /// tok::l_paren token, 0 if it is something else and 2 if there are no more
83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
PTHLexer.h 79 /// tok::l_paren token, 0 if it is something else and 2 if there are no more
83 // whether or not we are at a token with kind tok::eof or tok::l_paren.
87 return x == tok::eof ? 2 : x == tok::l_paren;
  /external/clang/lib/Parse/
ParseTentative.cpp 151 if (NextToken().isNot(tok::l_paren)) {
160 if (Tok.isNot(tok::l_paren))
191 if (Tok.isNot(tok::l_paren))
239 if (Tok.isNot(tok::l_paren)) {
297 if (Tok.is(tok::l_paren)) {
424 assert(Tok.is(tok::l_paren) && "Expected '('");
447 if (Tok.is(tok::l_paren)) {
508 assert(Tok.is(tok::l_paren) && "Expected '('");
661 if (Tok.is(tok::l_paren)) {
760 case tok::l_paren
    [all...]
ParseExprCXX.cpp 108 if (!Tok.is(tok::l_paren))
609 Tok.is(tok::l_paren), isAddressOfOperand,
    [all...]
ParseCXXInlineMethods.cpp 693 case tok::l_paren:
812 if (Tok.isNot(tok::l_paren))
819 Diag(OpenLoc, diag::note_matching) << tok::l_paren; member in class:tok
861 if (!ConsumeAndStoreUntil(tok::l_paren, tok::l_brace, Toks,
    [all...]
ParseExpr.cpp 714 case tok::l_paren: {
789 if (Next.is(tok::l_paren) &&
1772 << tok::l_paren; member in class:tok
    [all...]
ParseStmt.cpp 129 WantTypeSpecifiers = nextTok.isOneOf(tok::l_paren, tok::less, tok::l_square,
132 nextTok.isOneOf(tok::l_paren, tok::identifier, tok::arrow, tok::period);
134 nextTok.isOneOf(tok::l_paren, tok::semi, tok::identifier, tok::l_brace);
481 if (ExpectAndConsume(tok::l_paren))
    [all...]
ParseObjc.cpp 253 if (Tok.is(tok::l_paren) &&
256 BalancedDelimiterTracker T(*this, tok::l_paren);
556 tok::minus, tok::plus, tok::colon, tok::l_paren, tok::l_brace,
568 if (Tok.isNot(tok::colon) && Tok.isNot(tok::l_paren)) {
643 if (Tok.is(tok::l_paren)) {
739 if (Tok.is(tok::l_paren)) {
858 assert(Tok.getKind() == tok::l_paren);
859 BalancedDelimiterTracker T(*this, tok::l_paren);
    [all...]
ParseDecl.cpp 132 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after,
137 if (ExpectAndConsume(tok::l_paren, diag::err_expected_lparen_after, "(")) {
156 if (Tok.isNot(tok::l_paren)) {
249 BalancedDelimiterTracker Parens(*this, tok::l_paren);
344 assert(Tok.is(tok::l_paren) && "Attribute arg list not starting with '('");
406 BalancedDelimiterTracker T(*this, tok::l_paren);
542 BalancedDelimiterTracker T(*this, tok::l_paren);
584 if (Tok.is(tok::l_paren))
870 BalancedDelimiterTracker T(*this, tok::l_paren);
872 Diag(Tok, diag::err_expected) << tok::l_paren; member in class:tok
1081 Diag(Tok, diag::err_expected) << tok::l_paren; member in class:tok
5391 << tok::identifier << tok::l_paren; member in class:tok
    [all...]
ParseOpenMP.cpp 207 BalancedDelimiterTracker T(*this, tok::l_paren, tok::annot_pragma_openmp_end);
319 BalancedDelimiterTracker T(*this, tok::l_paren,
838 if (PP.LookAhead(0).is(tok::l_paren)) {
889 BalancedDelimiterTracker T(*this, tok::l_paren,
    [all...]
  /external/clang/unittests/Lex/
LexerTest.cpp 122 ExpectedTokens.push_back(tok::l_paren);
188 ExpectedTokens.push_back(tok::l_paren);
203 ExpectedTokens.push_back(tok::l_paren);
216 ExpectedTokens.push_back(tok::l_paren);
229 ExpectedTokens.push_back(tok::l_paren);
243 ExpectedTokens.push_back(tok::l_paren);
259 ExpectedTokens.push_back(tok::l_paren);
  /external/clang/lib/Format/
UnwrappedLineParser.cpp 370 tok::l_square, tok::l_paren, tok::ellipsis) ||
422 if (MacroBlock && FormatTok->is(tok::l_paren))
445 if (MacroBlock && FormatTok->is(tok::l_paren))
468 return I->Tok->is(tok::l_paren);
614 if (FormatTok->Tok.getKind() == tok::l_paren &&
982 case tok::l_paren:
995 if (FormatTok->is(tok::l_paren))
    [all...]
TokenAnnotator.cpp 117 ScopedContextCreator ContextCreator(*this, tok::l_paren, 1);
143 tok::kw_if, tok::kw_while, tok::l_paren,
215 CurrentToken->Previous->Previous->isOneOf(tok::l_paren,
224 (CurrentToken->Next->is(tok::l_paren) ||
231 Left->Previous && Left->Previous->is(tok::l_paren)) {
313 Parent->isOneOf(tok::colon, tok::l_square, tok::l_paren,
331 tok::comma, tok::l_paren, tok::l_square,
348 if (CurrentToken->Next && CurrentToken->Next->is(tok::l_paren) &&
497 Contexts.back().ContextKind == tok::l_paren || // function params
532 } else if (Contexts.back().ContextKind == tok::l_paren) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGLexer.h 37 l_paren, r_paren, // ( ) enumerator in enum:llvm::tgtok::TokKind
  /external/llvm/lib/TableGen/
TGLexer.h 38 l_paren, r_paren, // ( ) enumerator in enum:llvm::tgtok::TokKind
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 586 if (I->is(tok::l_paren)) {
668 TempToken.setKind(tok::l_paren);
719 assert(Tok.is(tok::l_paren) && "Error computing l-paren-ness?");
735 assert(Tok.isOneOf(tok::l_paren, tok::comma) &&
774 } else if (Tok.is(tok::l_paren)) {
    [all...]
  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 95 if (PragmaToken.isNot(clang::tok::l_paren))
303 // The current token must be clang::tok::l_paren
304 if (PragmaToken.isNot(clang::tok::l_paren)) {
441 if (PragmaToken.isNot(clang::tok::l_paren))
487 if (PragmaToken.isNot(clang::tok::l_paren))
525 if (PragmaToken.isNot(clang::tok::l_paren)) {
  /external/clang/lib/ARCMigrate/
Transforms.cpp 415 if (tok.isNot(tok::l_paren)) return false;
451 if (BeforeTok.is(tok::l_paren) && AfterTok.is(tok::r_paren)) {
454 } else if (BeforeTok.is(tok::l_paren) && AfterTok.is(tok::comma)) {
497 if (tok.isNot(tok::l_paren)) {

Completed in 328 milliseconds

1 2 3