Searched refs:current_token (Results 1 - 10 of 10) sorted by relevance

/external/srec/srec/crec/
H A Dsrec.c355 fsmarc_token *current_token; local
383 current_token = &(rec->fsmarc_token_array[current_token_index]);
385 fsm_arc = &rec->context->FSMarc_list[ current_token->FSMarc_index];
391 if ((current_token->cost[i] != MAXcostdata) ||
392 ((i > 0) && current_token->cost[i-1] != MAXcostdata))
398 current_token_index = current_token->next_token_index;
711 current_token is the fsmnode_token to the left of the boundary
950 /* now drop alternative words, note the use of current_token
1101 fsmarc_token *current_token; local
1131 current_token
1254 fsmarc_token *current_token; local
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Derror_fixer.py328 current_token = token.next.next.next
330 while current_token and current_token.line_number == token.line_number:
331 if current_token.IsAnyType(Type.WHITESPACE,
334 removed_tokens.append(current_token)
335 current_token = current_token.next
H A Dtokenutil.py287 current_token = token
289 InsertTokenAfter(new_token, current_token)
290 current_token = new_token
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Derror_fixer.py350 current_token = token.next.next.next
352 while current_token and current_token.line_number == token.line_number:
353 if current_token.IsAnyType(Type.WHITESPACE,
356 removed_tokens.append(current_token)
357 current_token = current_token.next
H A Dtokenutil.py336 current_token = token
338 InsertTokenAfter(new_token, current_token)
339 current_token = new_token
/external/chromium_org/gpu/command_buffer/common/
H A Dgles2_cmd_format.h169 uint32_t current_token = base::subtle::Acquire_Load(&async_upload_token); local
170 return (current_token - token < 0x80000000);
/external/chromium_org/v8/src/
H A Dpreparser.cc65 if (scanner->current_token() == Token::FUTURE_RESERVED_WORD) {
67 } else if (scanner->current_token() ==
70 } else if (scanner->current_token() == Token::LET) {
72 } else if (scanner->current_token() == Token::YIELD) {
133 DCHECK_EQ(Token::LBRACE, scanner()->current_token());
139 ReportUnexpectedToken(scanner()->current_token());
H A Dscanner.h353 Token::Value current_token() { return current_.token; } function in class:v8::internal::Scanner
H A Dpreparser.h374 ReportUnexpectedToken(scanner()->current_token());
1436 ReportUnexpectedToken(scanner()->current_token());
2416 if (scanner()->current_token() == Token::IDENTIFIER) {
H A Dparser.cc1511 ReportUnexpectedToken(scanner()->current_token());
3833 DCHECK_EQ(Token::LBRACE, scanner()->current_token());

Completed in 2344 milliseconds