OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NextToken
(Results
1 - 21
of
21
) sorted by null
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
ITokenSource`1.cs
39
new T
NextToken
();
SlimLexer.cs
129
public virtual SlimToken
NextToken
()
174
IToken ITokenSource.
NextToken
()
176
return
NextToken
();
181
* and look for another token.
nextToken
() knows to keep looking when
220
// * Currently does not support multiple emits per
nextToken
invocation
222
// *
nextToken
(to push tokens into a list and pull from that list rather
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ITokenSource.cs
41
/// A source of tokens must provide a sequence of tokens via
NextToken
()
62
IToken
NextToken
();
Lexer.cs
110
public virtual IToken
NextToken
() {
144
* and look for another token.
nextToken
() knows to keep looking when
176
* Currently does not support multiple emits per
nextToken
invocation
178
*
nextToken
(to push tokens into a list and pull from that list rather
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ITokenSource.cs
37
* A source of tokens must provide a sequence of tokens via
nextToken
()
61
IToken
NextToken
();
Lexer.cs
128
public virtual IToken
NextToken
()
178
* and look for another token.
nextToken
() knows to keep looking when
216
* Currently does not support multiple emits per
nextToken
invocation
218
*
nextToken
(to push tokens into a list and pull from that list rather
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
RewriteRuleTokenStream.cs
77
public virtual IToken
NextToken
() {
TreePatternLexer.cs
69
public virtual int
NextToken
() {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteRuleTokenStream.cs
66
public virtual IToken
NextToken
()
TreePatternLexer.cs
71
public virtual int
NextToken
()
/frameworks/compile/slang/
slang_pragma_recorder.cpp
65
const clang::Token*
NextToken
= &PP.LookAhead(0);
67
if (
NextToken
->is(clang::tok::l_paren))
72
NextToken
= &PP.LookAhead(0);
73
if (GetPragmaValueFromToken(*
NextToken
, PragmaValue)) {
77
PP.Diag(
NextToken
->getLocation(),
84
if (!
NextToken
->is(clang::tok::r_paren)) {
85
NextToken
= &PP.LookAhead(0);
86
if (
NextToken
->is(clang::tok::r_paren)) {
90
PP.Diag(
NextToken
->getLocation(),
/external/chromium_org/chrome/browser/ui/app_list/search/
tokenized_string_char_iterator.cc
30
return
NextToken
();
33
bool TokenizedStringCharIterator::
NextToken
() {
/external/chromium_org/third_party/protobuf/python/google/protobuf/
text_format.py
326
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
()
[
all
...]
/external/protobuf/python/google/protobuf/
text_format.py
329
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
()
[
all
...]
/external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp
60
NextToken
= getNextToken();
64
const TokenInfo &peekNextToken() const { return
NextToken
; }
68
TokenInfo ThisToken =
NextToken
;
69
NextToken
= getNextToken();
73
TokenInfo::TokenKind nextTokenKind() const { return
NextToken
.Kind; }
226
TokenInfo
NextToken
;
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas
[
all
...]
Antlr.Runtime.pas
276
/// 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
605
/// the start of
nextToken
.
[
all
...]
/external/clang/lib/Format/
TokenAnnotator.cpp
729
const FormatToken *
NextToken
= Tok.getNextNonComment();
730
if (
NextToken
== NULL)
744
if (
NextToken
->is(tok::l_square))
749
NextToken
->Tok.isLiteral() ||
NextToken
->isUnaryOperator())
[
all
...]
Format.cpp
331
State.
NextToken
= RootToken;
356
while (State.
NextToken
!= NULL) {
497
const FormatToken *
NextToken
;
536
if (
NextToken
!= Other.
NextToken
)
537
return
NextToken
< Other.
NextToken
;
560
while (State.
NextToken
!= NULL) {
562
(canBreak(State) && State.
NextToken
->NewlinesBefore > 0);
576
const FormatToken &Current = *State.
NextToken
;
[
all
...]
/external/clang/include/clang/Parse/
Parser.h
470
///
NextToken
- This peeks ahead one token and returns it without
472
const Token &
NextToken
() {
[
all
...]
/external/clang/tools/libclang/
CIndex.cpp
[
all
...]
Completed in 960 milliseconds