Searched defs:NextToken (Results 1 - 21 of 21) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DITokenSource`1.cs39 new T NextToken(); method in interface:Antlr.Runtime.ITokenSource
H A DSlimLexer.cs129 public virtual SlimToken NextToken() method in class:Antlr.Runtime.SlimLexer
174 IToken ITokenSource.NextToken()
176 return NextToken();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DITokenSource.cs41 /// A source of tokens must provide a sequence of tokens via NextToken()
62 IToken NextToken(); method in interface:Antlr.Runtime.ITokenSource
H A DLexer.cs110 public virtual IToken NextToken() { method in class:Antlr.Runtime.Lexer
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DITokenSource.cs61 IToken NextToken(); method in interface:Antlr.Runtime.ITokenSource
H A DLexer.cs128 public virtual IToken NextToken() method in class:Antlr.Runtime.Lexer
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DRewriteRuleTokenStream.cs66 public virtual IToken NextToken() method in class:Antlr.Runtime.Tree.RewriteRuleTokenStream
H A DTreePatternLexer.cs71 public virtual int NextToken() method in class:Antlr.Runtime.Tree.TreePatternLexer
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DRewriteRuleTokenStream.cs77 public virtual IToken NextToken() { method in class:Antlr.Runtime.Tree.RewriteRuleTokenStream
H A DTreePatternLexer.cs69 public virtual int NextToken() { method in class:Antlr.Runtime.Tree.TreePatternLexer
/external/chromium_org/ui/app_list/search/
H A Dtokenized_string_char_iterator.cc37 return NextToken();
40 bool TokenizedStringCharIterator::NextToken() { function in class:app_list::TokenizedStringCharIterator
/external/chromium_org/third_party/protobuf/python/google/protobuf/
H A Dtext_format.py326 self.NextToken()
364 self.NextToken()
392 self.NextToken()
408 self.NextToken()
424 self.NextToken()
440 self.NextToken()
456 self.NextToken()
472 self.NextToken()
488 self.NextToken()
538 self.NextToken()
569 def NextToken(self): member in class:_Tokenizer
[all...]
/external/clang/lib/Format/
H A DContinuationIndenter.h307 FormatToken *NextToken; member in struct:clang::format::LineState
351 if (NextToken != Other.NextToken)
352 return NextToken < Other.NextToken;
H A DTokenAnnotator.cpp903 const FormatToken *NextToken = Tok.getNextNonComment(); local
904 if (!NextToken || NextToken->is(tok::l_brace))
919 if (NextToken->is(tok::l_square) && NextToken->Type != TT_LambdaLSquare)
921 if (NextToken->is(tok::kw_operator))
933 NextToken->Tok.isLiteral() ||
934 NextToken->isOneOf(tok::kw_true, tok::kw_false) ||
935 NextToken->isUnaryOperator() ||
939 (InTemplateArgument && NextToken
[all...]
/external/protobuf/python/google/protobuf/
H A Dtext_format.py329 self.NextToken()
368 self.NextToken()
407 self.NextToken()
423 self.NextToken()
439 self.NextToken()
455 self.NextToken()
471 self.NextToken()
485 self.NextToken()
491 self.NextToken()
498 self.NextToken()
620 def NextToken(self): member in class:_Tokenizer
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas875 function NextToken: IToken;
900 function NextToken: Integer;
1613 function NextToken: IToken; function
1687 function NextToken: Integer;
3708 function TRewriteRuleTokenStream.NextToken: IToken;
3882 function TTreePatternLexer.NextToken: Integer;
4263 FTokenType := FTokenizer.NextToken; // kickstart
4277 FTokenType := FTokenizer.NextToken;
4281 FTokenType := FTokenizer.NextToken;
4284 FTokenType := FTokenizer.NextToken; // mov
[all...]
H A DAntlr.Runtime.pas276 /// A source of tokens must provide a sequence of tokens via NextToken()
302 function NextToken: IToken;
587 /// Token object normally returned by NextToken() after matching lexer rules.
592 /// create a single token. NextToken will return this object after
1061 function NextToken: IToken;
1065 /// look for another token. NextToken() knows to keep looking when a lexer
1077 /// NextToken (to push tokens into a list and pull from that list rather
2458 function NextToken: IToken; virtual;
4791 T := FTokenSource.NextToken;
4813 T := FTokenSource.NextToken;
[all...]
/external/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp62 NextToken = getNextToken();
69 NextToken = getNextToken();
73 const TokenInfo &peekNextToken() const { return NextToken; }
77 TokenInfo ThisToken = NextToken;
78 NextToken = getNextToken();
82 TokenInfo::TokenKind nextTokenKind() const { return NextToken.Kind; }
255 TokenInfo NextToken; member in class:clang::ast_matchers::dynamic::Parser::CodeTokenizer
/external/clang/lib/Parse/
H A DParseStmt.cpp121 StatementFilterCCC(Token nextTok) : NextToken(nextTok) {
137 if (NextToken.is(tok::equal))
139 if (NextToken.is(tok::period) &&
146 Token NextToken; member in class:__anon17957::StatementFilterCCC
177 Token Next = NextToken();
1412 const Token &Next = NextToken();
/external/clang/include/clang/Parse/
H A DParser.h541 /// NextToken - This peeks ahead one token and returns it without
543 const Token &NextToken() { function in class:clang::Parser
1984 if (!getLangOpts().CPlusPlus11 || NextToken().isNot(tok::l_square))
1993 if ((Tok.isNot(tok::l_square) || NextToken().isNot(tok::l_square)) &&
/external/clang/lib/Sema/
H A DSemaDecl.cpp603 static bool isResultTypeOrTemplate(LookupResult &R, const Token &NextToken) { argument
605 NextToken.is(tok::less);
686 const Token &NextToken,
692 if (NextToken.is(tok::coloncolon)) {
693 BuildCXXNestedNameSpecifier(S, *Name, NameLoc, NextToken.getLocation(),
712 if (!SS.isSet() && CurMethod && !isResultTypeOrTemplate(Result, NextToken)) {
726 if (!SS.isSet() && NextToken.is(tok::l_paren)) {
773 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
854 if (getLangOpts().CPlusPlus && NextToken.is(tok::less) &&
878 if (getLangOpts().CPlusPlus && NextToken
682 ClassifyName(Scope *S, CXXScopeSpec &SS, IdentifierInfo *&Name, SourceLocation NameLoc, const Token &NextToken, bool IsAddressOfOperand, CorrectionCandidateCallback *CCC) argument
[all...]

Completed in 1481 milliseconds