Home
last modified time | relevance | path

Searched refs:current_token (Results 1 – 6 of 6) sorted by relevance

/third_party/PyYAML/yaml/
D_yaml.pyx251 cdef object current_token
291 self.current_token = None
453 if self.current_token is not None:
454 value = self.current_token
455 self.current_token = None
461 if self.current_token is None:
462 self.current_token = self._scan()
463 return self.current_token
466 if self.current_token is None:
467 self.current_token = self._scan()
[all …]
/third_party/python/Parser/
Dpegen_errors.c163 Token *current_token = p->known_err_token != NULL ? p->known_err_token : p->tokens[p->fill - 1]; in _PyPegen_tokenize_full_source_to_check_for_errors() local
164 Py_ssize_t current_err_line = current_token->lineno; in _PyPegen_tokenize_full_source_to_check_for_errors()
Dpegen.c1306 Token *current_token = p->known_err_token != NULL ? p->known_err_token : p->tokens[p->fill - 1]; in _PyPegen_check_tokenizer_errors() local
1307 Py_ssize_t current_err_line = current_token->lineno; in _PyPegen_check_tokenizer_errors()
/third_party/python/Lib/
Dfunctools.py827 current_token = get_cache_token()
828 if cache_token != current_token:
830 cache_token = current_token
/third_party/jerryscript/jerry-core/parser/js/
Djs-parser-statm.c1073 lexer_token_t current_token; in parser_parse_while_statement_end() local
1088 current_token = context_p->token; in parser_parse_while_statement_end()
1124 context_p->token = current_token; in parser_parse_while_statement_end()
1565 lexer_token_t current_token; in parser_parse_for_statement_end() local
1593 current_token = context_p->token; in parser_parse_for_statement_end()
1667 context_p->token = current_token; in parser_parse_for_statement_end()
/third_party/googletest/googlemock/scripts/generator/cpp/
Dast.py703 self.current_token = None
721 self.current_token = token
1670 return Return(self.current_token.start, self.current_token.end, None)