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

1 2 3

  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
basic.rb 20 token = lexer.next_token
23 token = lexer.next_token
38 token = lexer.next_token
62 token = lexer.next_token
65 token = lexer.next_token
68 token = lexer.next_token
75 b = lambda { token = lexer.next_token }
100 token = lexer.next_token
103 token = lexer.next_token
106 token = lexer.next_token
    [all...]
syn-pred.rb 27 token = lexer.next_token
properties.rb 99 lexer.next_token
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_parse.c 83 next_token( function
100 next_token( ctx, &token );
110 next_token( ctx, &decl->Range );
113 next_token(ctx, &decl->Dim);
117 next_token( ctx, &decl->Interp );
121 next_token( ctx, &decl->Semantic );
136 next_token(ctx, &decl->Resource);
140 next_token(ctx, &decl->SamplerView);
159 next_token(ctx, &imm->u[i].Float);
165 next_token(ctx, &imm->u[i].Uint)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.c 83 next_token( function
100 next_token( ctx, &token );
110 next_token( ctx, &decl->Range );
113 next_token(ctx, &decl->Dim);
117 next_token( ctx, &decl->Interp );
121 next_token( ctx, &decl->Semantic );
136 next_token(ctx, &decl->Resource);
140 next_token(ctx, &decl->SamplerView);
159 next_token(ctx, &imm->u[i].Float);
165 next_token(ctx, &imm->u[i].Uint)
    [all...]
  /system/core/init/
parser.h 37 int next_token(struct parse_state *state);
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
realpath.c 58 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
113 if (s - left >= sizeof(next_token)) {
119 memcpy(next_token, left, s - left);
120 next_token[s - left] = '\0';
134 if (next_token[0] == '\0') {
157 else if (strcmp(next_token, ".") == 0)
159 else if (strcmp(next_token, "..") == 0) {
176 resolved_len = strlcat(resolved, next_token, PATH_MAX);
  /external/antlr/antlr-3.4/runtime/Perl5/examples/zero-one/
t-error.pl 16 my $token = eval { $lexer->next_token(); };
t.pl 16 my $token = $lexer->next_token();
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
tokenutil.py 133 next_token = token.next
134 if next_token:
135 if func(next_token):
136 return next_token
137 if end_func and end_func(next_token):
140 token = next_token
334 next_token = new_tokens[-1].next
335 while next_token:
336 next_token.line_number += 1
337 next_token = next_token.nex
    [all...]
closurizednamespacesinfo.py 397 next_token = token
398 while next_token:
399 if (next_token.IsType(TokenType.IDENTIFIER) or
400 next_token.IsType(TokenType.NORMAL) and next_token.string == '.'):
401 result += next_token.string
402 elif (not next_token.IsType(TokenType.WHITESPACE) and
403 not next_token.IsAnyType(TokenType.COMMENT_TYPES)):
405 next_token = next_token.nex
    [all...]
javascriptlintrules.py 168 next_token = token.next
169 while next_token.type == Type.STRING_TEXT:
171 next_token.string):
173 next_token = next_token.next
202 next_token = token.next
203 if (not next_token or
204 (not is_file_overview and next_token.type in Type.NON_CODE_TYPES)):
210 next_token.type == Type.IDENTIFIER and
211 next_token.string in ['goog.provide', 'goog.require'])
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
tokenutil.py 133 next_token = token.next
134 if next_token:
135 if func(next_token):
136 return next_token
137 if end_func and end_func(next_token):
140 token = next_token
334 next_token = new_tokens[-1].next
335 while next_token:
336 next_token.line_number += 1
337 next_token = next_token.nex
    [all...]
closurizednamespacesinfo.py 397 next_token = token
398 while next_token:
399 if (next_token.IsType(TokenType.IDENTIFIER) or
400 next_token.IsType(TokenType.NORMAL) and next_token.string == '.'):
401 result += next_token.string
402 elif (not next_token.IsType(TokenType.WHITESPACE) and
403 not next_token.IsAnyType(TokenType.COMMENT_TYPES)):
405 next_token = next_token.nex
    [all...]
javascriptlintrules.py 168 next_token = token.next
169 while next_token.type == Type.STRING_TEXT:
171 next_token.string):
173 next_token = next_token.next
202 next_token = token.next
203 if (not next_token or
204 (not is_file_overview and next_token.type in Type.NON_CODE_TYPES)):
210 next_token.type == Type.IDENTIFIER and
211 next_token.string in ['goog.provide', 'goog.require'])
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/examples/id/
id.pl 16 my $token = $lexer->next_token();
  /external/srec/srec/crec/
srec_tokens.c 276 awtoken->next_token = awtoken + 1;
282 awtoken->next_token = NULL;
291 for (; b; b = b->next_token) {
310 rec->altword_token_freelist = awtoken->next_token;
321 old_token->next_token = rec->altword_token_freelist;
338 next_awtoken = awtoken->next_token;
341 awtoken->next_token = rec->altword_token_freelist;
srec_stats.c 128 for (num = 0, awtoken = rec->altword_token_freelist; awtoken; awtoken = awtoken->next_token)
132 if (rec->altword_token_array[i].next_token == AWTNULL)
srec.c 94 awtokenp = &batch->next_token;
95 for (awtoken = batch->next_token; awtoken != AWTNULL; awtoken = next_awtoken)
97 next_awtoken = awtoken->next_token;
100 (*awtokenp) = awtoken->next_token;
105 awtokenp = &awtoken->next_token;
113 else if (batch->next_token != AWTNULL)
117 awtoken = batch->next_token;
123 batch->next_token = awtoken->next_token;
221 for (num = 0, q2 = list1; q2 != AWTNULL; q2 = q2->next_token)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
filter.rb 11 <tt>next_token</tt> to catch RecognitionErrors and skip ahead in the input until
19 def next_token method in class:ANTLR3.FilterMode
  /external/chromium_org/third_party/handlebar/
handlebar.py 826 self.next_token = None
834 return self.next_token is not None
837 if self.next_token is _Token.CHARACTER:
845 elif self.next_token is not None:
846 self.next_column += len(self.next_token.text)
848 self.next_token = None
856 self.next_token = (
860 if self.next_token is None:
861 self.next_token = _Token.CHARACTER
863 self._cursor += len(self.next_token.text
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-recognizers.rb 21 def next_token method in class:TestTokenSource.TestSource
test-tree-wizard.rb 18 type = lexer.next_token
26 type = lexer.next_token
34 type = lexer.next_token
42 type = lexer.next_token
50 type = lexer.next_token
58 type = lexer.next_token
66 type = lexer.next_token
74 type = lexer.next_token
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
argv_traverser.hpp 54 void next_token();
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 112 static const char* next_token(const char* str);
275 next_token(const char* str) function
284 const char* start = next_token(str);

Completed in 557 milliseconds

1 2 3