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

1 2

  /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...]
  /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/chromium_org/third_party/closure_linter/closure_linter/
tokenutil.py 134 next_token = token.next
135 if next_token:
136 if func(next_token):
137 return next_token
138 if end_func and end_func(next_token):
141 token = next_token
383 next_token = new_tokens[-1].next
384 while next_token:
385 next_token.line_number += 1
386 next_token = next_token.nex
    [all...]
statetracker.py     [all...]
javascriptlintrules.py 202 next_token = token.next
203 while next_token.type == Type.STRING_TEXT:
205 next_token.string):
207 next_token = next_token.next
242 next_token = token.next
243 if (not next_token or
245 next_token.type in Type.NON_CODE_TYPES)):
251 next_token.type == Type.IDENTIFIER and
252 next_token.string in ['goog.provide', 'goog.require'])
    [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/motemplate/
motemplate.py 823 self.next_token = None
831 return self.next_token is not None
834 if self.next_token is _Token.CHARACTER:
842 elif self.next_token is not None:
843 self.next_column += len(self.next_token.text)
845 self.next_token = None
853 self.next_token = (
857 if self.next_token is None:
858 self.next_token = _Token.CHARACTER
860 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
  /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
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
CommonTokenStream.pm 78 my $t = $self->token_source->next_token();
101 $t = $self->token_source->next_token();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/UglifyJS/
parse-js.js 487 return next_token();
491 return next_token();
523 function next_token(force_regexp) {
540 next_token.context = function(nc) {
545 return next_token;
    [all...]
  /cts/tools/dasm/src/java_cup/
lexer.java 32 * next_token() to get each token) this class provides simple error and
373 public static token next_token() throws java.io.IOException method in class:lexer
380 /** Debugging version of next_token(). This routine calls the real scanning
387 System.out.println("# next_token() => " + result.sym);
394 * next_token(), but for debugging purposes can be called indirectly from

Completed in 623 milliseconds

1 2