Searched refs:current_token (Results 1 – 7 of 7) sorted by relevance
/external/dbus/dbus/ |
D | dbus-shell.c | 351 DBusString current_token; in tokenize_command_line() local 359 if (!_dbus_string_init (¤t_token)) in tokenize_command_line() 375 if (!_dbus_string_append_byte (¤t_token, '\\') || in tokenize_command_line() 376 !_dbus_string_append_byte (¤t_token, *p)) in tokenize_command_line() 410 if (!_dbus_string_append_byte (¤t_token, *p)) in tokenize_command_line() 421 if (!delimit_token (¤t_token, &retval, error)) in tokenize_command_line() 424 _dbus_string_free (¤t_token); in tokenize_command_line() 426 if (!_dbus_string_init (¤t_token)) in tokenize_command_line() 440 if (_dbus_string_get_length (¤t_token) > 0) in tokenize_command_line() 442 if (!delimit_token (¤t_token, &retval, error)) in tokenize_command_line() [all …]
|
/external/srec/srec/crec/ |
D | srec.c | 355 fsmarc_token *current_token; in find_which_models_to_compute() local 383 current_token = &(rec->fsmarc_token_array[current_token_index]); in find_which_models_to_compute() 385 fsm_arc = &rec->context->FSMarc_list[ current_token->FSMarc_index]; in find_which_models_to_compute() 391 if ((current_token->cost[i] != MAXcostdata) || in find_which_models_to_compute() 392 ((i > 0) && current_token->cost[i-1] != MAXcostdata)) in find_which_models_to_compute() 398 current_token_index = current_token->next_token_index; in find_which_models_to_compute() 1101 fsmarc_token *current_token; in update_internal_hmm_states() local 1131 current_token = &(rec->fsmarc_token_array[current_token_index]); in update_internal_hmm_states() 1133 fsm_arc_index = current_token->FSMarc_index; in update_internal_hmm_states() 1141 end_state = current_token->num_hmm_states - 1; in update_internal_hmm_states() [all …]
|
/external/v8/src/ |
D | preparser.cc | 62 ASSERT_EQ(i::Token::LBRACE, scanner_->current_token()); in PreParseLazyFunction() 68 ReportUnexpectedToken(scanner_->current_token()); in PreParseLazyFunction() 1510 if (scanner_->current_token() == i::Token::FUTURE_RESERVED_WORD) { in GetIdentifierSymbol() 1512 } else if (scanner_->current_token() == in GetIdentifierSymbol()
|
D | scanner.h | 327 Token::Value current_token() { return current_.token; } in current_token() function
|
D | preparser.h | 495 ReportUnexpectedToken(scanner_->current_token()); in PreParse()
|
D | parser.cc | 1520 ReportUnexpectedToken(scanner().current_token()); in ParseExportDeclaration() 3370 if (scanner().current_token() == Token::IDENTIFIER) { in ParseLeftHandSideExpression() 4657 ASSERT_EQ(Token::LBRACE, scanner().current_token()); in LazyParseFunctionLiteral() 4780 ReportUnexpectedToken(scanner().current_token()); in ExpectContextualKeyword()
|
/external/chromium/testing/gmock/scripts/generator/cpp/ |
D | ast.py | 692 self.current_token = None 710 self.current_token = token 1620 return Return(self.current_token.start, self.current_token.end, None)
|