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

1 2

  /external/clang/lib/Parse/
ParseInit.cpp 35 case tok::l_square: { // designator: array-designator
165 while (Tok.is(tok::period) || Tok.is(tok::l_square)) {
182 assert(Tok.is(tok::l_square) && "Unexpected token!");
203 BalancedDelimiterTracker T(*this, tok::l_square);
ParseTentative.cpp 183 while (Tok.isOneOf(tok::l_square, tok::kw___attribute, tok::kw___declspec,
185 if (Tok.is(tok::l_square)) {
580 if (Tok.isNot(tok::l_square) || NextToken().isNot(tok::l_square))
739 if (Tok.is(tok::l_square) && NextToken().is(tok::r_square)) {
752 case tok::l_square:
937 } else if (Tok.is(tok::l_square)) {
    [all...]
ParseExprCXX.cpp 83 if (!Next.is(tok::l_square) || Next.getLength() != 2)
739 && Tok.is(tok::l_square)
790 assert(Tok.is(tok::l_square) && "Lambda expressions begin with '['.");
791 BalancedDelimiterTracker T(*this, tok::l_square);
    [all...]
RAIIObjectsForParser.h 374 case tok::l_square: return P.BracketCount;
402 case tok::l_square:
ParseDecl.cpp     [all...]
ParseStmtAsm.cpp 815 if (!isTokenStringLiteral() && Tok.isNot(tok::l_square))
820 if (Tok.is(tok::l_square)) {
821 BalancedDelimiterTracker T(*this, tok::l_square);
ParseDeclCXX.cpp     [all...]
ParseCXXInlineMethods.cpp 699 case tok::l_square:
    [all...]
ParseExpr.cpp     [all...]
ParseStmt.cpp 129 WantTypeSpecifiers = nextTok.isOneOf(tok::l_paren, tok::less, tok::l_square,
    [all...]
  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGLexer.h 35 l_square, r_square, // [ ] enumerator in enum:llvm::tgtok::TokKind
TGParser.cpp     [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 36 l_square, r_square, // [ ] enumerator in enum:llvm::tgtok::TokKind
TGParser.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/TableGen/
TGLexer.h 36 l_square, r_square, // [ ] enumerator in enum:llvm::tgtok::TokKind
  /external/clang/lib/Format/
TokenAnnotator.cpp 225 (CurrentToken->Next->is(tok::l_square) && Line.MustBeDeclaration)))
313 Parent->isOneOf(tok::colon, tok::l_square, tok::l_paren,
331 tok::comma, tok::l_paren, tok::l_square,
342 ScopedContextCreator ContextCreator(*this, tok::l_square, BindingIncrease);
498 Contexts.back().ContextKind == tok::l_square || // array type
584 case tok::l_square:
    [all...]
UnwrappedLineParser.cpp 370 tok::l_square, tok::l_paren, tok::ellipsis) ||
641 // Semicolon can be a null-statement, l_square can be a start of a macro or
644 Tok.isNot(tok::l_square) &&
    [all...]
FormatToken.h 337 return isOneOf(tok::l_paren, tok::l_brace, tok::l_square,
FormatTokenLexer.cpp 145 tok::r_brace, tok::l_square, tok::semi, tok::exclaim,
WhitespaceManager.cpp 263 Changes[i].Kind == tok::l_square) {
ContinuationIndenter.cpp 356 Previous.isOneOf(tok::l_paren, TT_TemplateOpener, tok::l_square) &&
    [all...]
  /external/clang/unittests/Lex/
LexerTest.cpp 272 ExpectedTokens.push_back(tok::l_square);
275 ExpectedTokens.push_back(tok::l_square);
  /external/clang/include/clang/Parse/
Parser.h 333 return Tok.getKind() == tok::l_square || Tok.getKind() == tok::r_square;
397 if (Tok.getKind() == tok::l_square)
    [all...]
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 101 ASSERT_EQ(tok::l_square, toks[0].getKind());
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp     [all...]

Completed in 2187 milliseconds

1 2