HomeSort by relevance Sort by last modified time
    Searched refs:next_token (Results 1 - 25 of 57) 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/openssh/openbsd-compat/
realpath.c 59 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
93 if (s - left >= sizeof(next_token)) {
97 memcpy(next_token, left, s - left);
98 next_token[s - left] = '\0';
110 if (next_token[0] == '\0')
112 else if (strcmp(next_token, ".") == 0)
114 else if (strcmp(next_token, "..") == 0) {
133 resolved_len = strlcat(resolved, next_token, PATH_MAX);
  /system/core/init/
parser.h 38 int next_token(struct parse_state *state);
ueventd_parser.c 41 int token = next_token(&state);
parser.c 68 int next_token(struct parse_state *state) function
  /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...]
statetracker.py 913 next_token = tokenutil.SearchExcept(token, Type.NON_CODE_TYPES)
914 while next_token and next_token.IsType(Type.FUNCTION_NAME):
915 name += next_token.string
916 next_token = tokenutil.Search(next_token, Type.FUNCTION_NAME, 2)
929 next_token = tokenutil.SearchExcept(token, Type.NON_CODE_TYPES)
930 if not next_token.IsType(Type.SEMICOLON):
952 next_token = tokenutil.SearchExcept(token, Type.NON_CODE_TYPES)
953 if next_token.IsType(Type.SEMICOLON)
    [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/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
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 933 next_token = GetNextToken()
936 while (next_token.token_type == tokenize.NAME or
937 (next_token.token_type == tokenize.SYNTAX and
938 next_token.name in ('::', '<'))):
941 if last_token_was_name and next_token.token_type == tokenize.NAME:
    [all...]
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 111 static const char* next_token(const char* str);
253 next_token(const char* str) function
262 const char* start = next_token(str);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
wizard.rb 152 def next_token method in class:ANTLR3.AST.Wizard.PatternLexer
197 @token_type = tokenizer.next_token
215 @token_type = @tokenizer.next_token
230 @token_type = @tokenizer.next_token
237 ( @token_type = @tokenizer.next_token ) == :identifier or return nil
239 ( @token_type = @tokenizer.next_token ) == :colon or return nil
240 @token_type = @tokenizer.next_token
244 @token_type = @tokenizer.next_token
253 @token_type = @tokenizer.next_token
261 @token_type = @tokenizer.next_token
    [all...]
  /cts/tools/dasm/src/dasm/
Scanner.java 203 public token next_token() throws IOException, DasmError { method in class:Scanner

Completed in 220 milliseconds

1 2 3