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

  /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.is(tok::l_square) || Tok.is(tok::kw___attribute) ||
184 if (Tok.is(tok::l_square)) {
503 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:
872 } else if (Tok.is(tok::l_square)) {
901 case tok::l_square:
    [all...]
ParseExprCXX.cpp 83 if (!Next.is(tok::l_square) || Next.getLength() != 2)
690 && Tok.is(tok::l_square)
738 assert(Tok.is(tok::l_square) && "Lambda expressions begin with '['.");
739 BalancedDelimiterTracker T(*this, tok::l_square);
    [all...]
RAIIObjectsForParser.h 368 case tok::l_square: return P.BracketCount;
396 case tok::l_square:
ParseStmtAsm.cpp 711 if (!isTokenStringLiteral() && Tok.isNot(tok::l_square))
716 if (Tok.is(tok::l_square)) {
717 BalancedDelimiterTracker T(*this, tok::l_square);
ParseDecl.cpp     [all...]
ParseExpr.cpp     [all...]
ParseDeclCXX.cpp     [all...]
ParseCXXInlineMethods.cpp 591 case tok::l_square:
    [all...]
ParseObjc.cpp     [all...]
ParseStmt.cpp 124 nextTok.is(tok::amp) || nextTok.is(tok::l_square);
    [all...]
Parser.cpp 288 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 172 (CurrentToken->Next->is(tok::l_square) &&
232 (!Parent || Parent->isOneOf(tok::colon, tok::l_square, tok::l_paren,
237 ScopedContextCreator ContextCreator(*this, tok::l_square, 10);
436 case tok::l_square:
765 Current.Previous->isNot(tok::l_square))) {
    [all...]
UnwrappedLineParser.cpp 593 // Semicolon can be a null-statement, l_square can be a start of a macro or
596 Tok.isNot(tok::l_square) &&
809 case tok::l_square:
829 assert(FormatTok->is(tok::l_square));
961 case tok::l_square:
1004 case tok::l_square:
1026 assert(FormatTok->Tok.is(tok::l_square) && "'[' expected.");
1040 case tok::l_square:
    [all...]
FormatToken.h 316 return isOneOf(tok::l_paren, tok::l_brace, tok::l_square) ||
ContinuationIndenter.cpp     [all...]
Format.cpp     [all...]
  /external/clang/include/clang/Parse/
Parser.h 332 return Tok.getKind() == tok::l_square || Tok.getKind() == tok::r_square;
387 if (Tok.getKind() == tok::l_square)
    [all...]
  /external/clang/unittests/Lex/
LexerTest.cpp 268 ExpectedTokens.push_back(tok::l_square);
271 ExpectedTokens.push_back(tok::l_square);
  /external/clang/unittests/Basic/
SourceManagerTest.cpp 102 ASSERT_EQ(tok::l_square, toks[0].getKind());
  /external/clang/lib/Lex/
Lexer.cpp     [all...]
ModuleMap.cpp     [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp     [all...]

Completed in 428 milliseconds