/third_party/glib/glib/ |
D | gshell.c | 436 GString *current_token = NULL; in tokenize_command_line() local 457 ensure_token (¤t_token); in tokenize_command_line() 458 g_string_append_c (current_token, '\\'); in tokenize_command_line() 459 g_string_append_c (current_token, *p); in tokenize_command_line() 489 ensure_token (¤t_token); in tokenize_command_line() 490 g_string_append_c (current_token, *p); in tokenize_command_line() 497 delimit_token (¤t_token, &retval); in tokenize_command_line() 506 if (current_token && in tokenize_command_line() 507 current_token->len > 0) in tokenize_command_line() 509 delimit_token (¤t_token, &retval); in tokenize_command_line() [all …]
|
/third_party/boost/libs/wave/samples/cpp_tokens/ |
D | cpp_tokens.cpp | 103 context_type::token_type current_token; in main() local 110 current_token = *first; in main() 113 cout << "matched " << current_token << endl; in main() 127 << current_token.get_position().get_file() in main() 128 << "(" << current_token.get_position().get_line() << "): " in main() 136 << current_token.get_position().get_file() in main() 137 << "(" << current_token.get_position().get_line() << "): " in main()
|
/third_party/boost/boost/test/utils/runtime/cla/ |
D | parser.hpp | 172 cstring curr_token = tr.current_token(); in parse() 228 << " in the argument " << tr.current_token() ); in parse() 236 value = tr.current_token(); in parse() 243 << " in the argument " << tr.current_token() ); in parse() 256 value = tr.current_token(); in parse() 263 cstring value_check = tr.current_token(); in parse() 285 << " in the argument " << tr.current_token() ); in parse()
|
D | argv_traverser.hpp | 61 cstring current_token() in current_token() function in boost::runtime::cla::argv_traverser
|
/third_party/boost/boost/ |
D | token_iterator.hpp | 90 ,end_(t.end()),valid_(!t.at_end()),tok_(t.current_token()) {} in token_iterator() 98 Type current_token()const{return tok_;} in current_token() function in boost::token_iterator
|
/third_party/boost/libs/test/test/utils-ts/ |
D | runtime-param-test.cpp | 82 BOOST_TEST( tr.current_token() == "abc" ); in BOOST_AUTO_TEST_CASE() 84 BOOST_TEST( tr.current_token() == "zxcvb" ); in BOOST_AUTO_TEST_CASE() 86 BOOST_TEST( tr.current_token() == "as kl" ); in BOOST_AUTO_TEST_CASE() 88 BOOST_TEST( tr.current_token() == "--ooo=111" ); in BOOST_AUTO_TEST_CASE() 90 BOOST_TEST( tr.current_token() == "a" ); in BOOST_AUTO_TEST_CASE() 93 BOOST_TEST( tr.current_token() == rt::cstring() ); in BOOST_AUTO_TEST_CASE() 96 BOOST_TEST( tr.current_token() == rt::cstring() ); in BOOST_AUTO_TEST_CASE() 108 BOOST_TEST( tr.current_token() == "b" ); in BOOST_AUTO_TEST_CASE() 112 BOOST_TEST( tr.current_token() == "" ); in BOOST_AUTO_TEST_CASE()
|
/third_party/PyYAML/yaml/ |
D | _yaml.pyx | 251 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/ |
D | pegen_errors.c | 163 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()
|
D | pegen.c | 1283 Token *current_token = p->known_err_token != NULL ? p->known_err_token : p->tokens[p->fill - 1]; in _PyPegen_check_tokenizer_errors() local 1284 Py_ssize_t current_err_line = current_token->lineno; in _PyPegen_check_tokenizer_errors()
|
/third_party/python/Lib/ |
D | functools.py | 827 current_token = get_cache_token() 828 if cache_token != current_token: 830 cache_token = current_token
|
/third_party/jerryscript/jerry-core/parser/js/ |
D | js-parser-statm.c | 1073 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/boost/tools/build/src/engine/ |
D | debugger.cpp | 70 static int current_token; variable 1780 if ( current_token != 0 ) in debug_mi_format_token() 1782 printf( "%d", current_token ); in debug_mi_format_token() 2627 current_token = atoi( argv[ 0 ] ); in run_command()
|
/third_party/googletest/googlemock/scripts/generator/cpp/ |
D | ast.py | 703 self.current_token = None 721 self.current_token = token 1670 return Return(self.current_token.start, self.current_token.end, None)
|
/third_party/boost/boost/wave/util/ |
D | cpp_iterator.hpp | 297 result_type const ¤t_token() const { return act_token; } in current_token() function in boost::wave::impl::pp_iterator_functor
|