/external/srec/srec/crec/ |
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...] |
srec_debug.c | 33 for (; awtoken; awtoken = awtoken->next_token)
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
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/chromium_org/third_party/closure_linter/closure_linter/ |
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...] |
/system/core/init/ |
parser.c | 68 int next_token(struct parse_state *state) function
|
ueventd_parser.c | 212 int token = next_token(&state);
|
/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
|
/external/oprofile/libop/ |
op_events.c | 348 static int next_token(char const ** cp, char ** name, char ** value) function 364 parse_error("next_token(): garbage at end of line"); 369 parse_error("next_token() expected ':'"); 460 while (next_token(&c, &name, &value)) { 761 while (next_token(&c, &name, &value)) {
|
/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);
|
/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();
|
Lexer.pm | 48 sub next_token { subroutine
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
token.rb | 298 implementation of the method #next_token. In return, it 311 abstract :next_token 314 token = next_token() 321 while token = next_token and token.type != EOF
|
recognizers.rb | 945 to fetch a token. The primary method in the lexer API, #next_token, uses 1023 def next_token method in class:ANTLR3.Hypothetical.Lexer.Hypothetical.Parser.Lexer [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/ |
argument_factory.hpp | 59 tr.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...] |
/external/chromium_org/testing/gtest/scripts/ |
pump.py | 524 next_token = PeekToken(tokens) 525 if next_token.token_type == 'code': 526 sep_token = next_token
|
/ndk/sources/host-tools/make-3.81/ |
misc.c | 120 in = next_token (in); 464 next_token (const char *s) 477 char *p = next_token (*ptr); 457 next_token (const char *s) function
|
read.c | 675 p2 = next_token (p2 + 6); 986 p2 = next_token (variable_buffer); [all...] |
variable.c | [all...] |
make.h | 424 extern char *next_token PARAMS ((const char *));
|
/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/Ruby/test/unit/ |
test-streams.rb | 249 def next_token method in class:TestCommonTokenStream.MockSource
|
/external/srec/srec/include/ |
srec.h | 52 struct altword_token_t* next_token; /* todo: change this to indices */ member in struct:altword_token_t
|
/external/chromium_org/third_party/libevent/ |
evdns.c | [all...] |