HomeSort by relevance Sort by last modified time
    Searched refs:l_square (Results 1 - 25 of 27) 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 182 while (Tok.isOneOf(tok::l_square, tok::kw___attribute, tok::kw___declspec,
184 if (Tok.is(tok::l_square)) {
504 if (Tok.isNot(tok::l_square) || NextToken().isNot(tok::l_square))
670 if (Tok.is(tok::l_square) && NextToken().is(tok::r_square)) {
683 case tok::l_square:
868 } else if (Tok.is(tok::l_square)) {
898 case tok::l_square:
    [all...]
ParseExprCXX.cpp 83 if (!Next.is(tok::l_square) || Next.getLength() != 2)
739 && Tok.is(tok::l_square)
787 assert(Tok.is(tok::l_square) && "Lambda expressions begin with '['.");
788 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 770 if (!isTokenStringLiteral() && Tok.isNot(tok::l_square))
775 if (Tok.is(tok::l_square)) {
776 BalancedDelimiterTracker T(*this, tok::l_square);
ParseDeclCXX.cpp     [all...]
ParseCXXInlineMethods.cpp 690 case tok::l_square:
    [all...]
ParseExpr.cpp     [all...]
ParseStmt.cpp 122 WantTypeSpecifiers = nextTok.isOneOf(tok::l_paren, tok::less, tok::l_square,
    [all...]
ParseObjc.cpp     [all...]
Parser.cpp 309 case tok::l_square:
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 36 l_square, r_square, // [ ] enumerator in enum:llvm::tgtok::TokKind
TGParser.cpp     [all...]
  /external/clang/lib/Format/
TokenAnnotator.cpp 191 (CurrentToken->Next->is(tok::l_square) &&
268 Parent->isOneOf(tok::colon, tok::l_square, tok::l_paren,
285 tok::l_square, tok::question, tok::colon,
294 ScopedContextCreator ContextCreator(*this, tok::l_square, BindingIncrease);
449 Contexts.back().ContextKind == tok::l_square || // array type
524 case tok::l_square:
    [all...]
UnwrappedLineParser.cpp 627 // Semicolon can be a null-statement, l_square can be a start of a macro or
630 Tok.isNot(tok::l_square) &&
962 case tok::l_square:
990 assert(FormatTok->is(tok::l_square));
    [all...]
FormatToken.h 322 return isOneOf(tok::l_paren, tok::l_brace, tok::l_square,
WhitespaceManager.cpp 251 Changes[i].Kind == tok::l_square) {
ContinuationIndenter.cpp     [all...]
Format.cpp     [all...]
  /external/clang/include/clang/Parse/
Parser.h 327 return Tok.getKind() == tok::l_square || Tok.getKind() == tok::r_square;
391 if (Tok.getKind() == tok::l_square)
    [all...]
  /external/clang/unittests/Lex/
LexerTest.cpp 267 ExpectedTokens.push_back(tok::l_square);
270 ExpectedTokens.push_back(tok::l_square);
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 101 ASSERT_EQ(tok::l_square, toks[0].getKind());
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp     [all...]
  /external/clang/lib/Lex/
Lexer.cpp     [all...]

Completed in 366 milliseconds

1 2