/third_party/gettext/gettext-tools/src/ |
D | x-smalltalk.c | 464 token_ty token2; in phase3_get() local 466 phase2_get (&token2); in phase3_get() 467 if (token2.type == token_type_symbol in phase3_get() 468 || token2.type == token_type_string_literal) in phase3_get() 471 tp->string = token2.string; in phase3_get() 474 phase2_unget (&token2); in phase3_get() 571 token_ty token2; in extract_smalltalk() local 576 phase3_get (&token2); in extract_smalltalk() 580 token2.type == token_type_symbol in extract_smalltalk() 585 phase3_unget (&token2); in extract_smalltalk()
|
D | x-lua.c | 912 token_ty token2; in phase4_get() local 914 phase3_get (&token2); in phase4_get() 915 if (token2.type == token_type_doubledot) in phase4_get() 936 free_token (&token2); in phase4_get() 943 phase3_unget (&token2); in phase4_get() 968 token_ty token2; in phase5_get() local 970 phase4_get (&token2); in phase5_get() 971 if (token2.type == token_type_dot) in phase5_get() 986 free_token (&token2); in phase5_get() 992 phase4_unget (&token2); in phase5_get()
|
D | x-ycp.c | 703 token_ty token2; in extract_parenthesized() local 706 phase8_get (&token2); in extract_parenthesized() 708 phase5_get (&token2); in extract_parenthesized() 712 token2.type == token_type_comma, in extract_parenthesized() 717 phase8_unget (&token2); in extract_parenthesized() 719 phase5_unget (&token2); in extract_parenthesized()
|
D | x-csharp.c | 1729 token_ty token2; in phase7_get() local 1731 phase6_get (&token2); in phase7_get() 1732 if (token2.type == token_type_plus) in phase7_get() 1748 free_token (&token2); in phase7_get() 1755 phase6_unget (&token2); in phase7_get() 1859 token_ty token2; in extract_parenthesized() local 1861 x_csharp_lex (&token2); in extract_parenthesized() 1862 if (token2.type == token_type_dot) in extract_parenthesized() 1879 free_token (&token2); in extract_parenthesized() 1884 x_csharp_unlex (&token2); in extract_parenthesized()
|
D | x-java.c | 1366 token_ty token2; in phase6_get() local 1368 phase5_get (&token2); in phase6_get() 1369 if (token2.type == token_type_plus) in phase6_get() 1385 free_token (&token2); in phase6_get() 1392 phase5_unget (&token2); in phase6_get() 1497 token_ty token2; in extract_parenthesized() local 1499 x_java_lex (&token2); in extract_parenthesized() 1500 if (token2.type == token_type_dot) in extract_parenthesized() 1517 free_token (&token2); in extract_parenthesized() 1522 x_java_unlex (&token2); in extract_parenthesized()
|
D | x-javascript.c | 1529 token_ty token2; in x_javascript_lex() local 1531 phase5_get (&token2); in x_javascript_lex() 1532 if (token2.type == token_type_plus) in x_javascript_lex() 1543 free_token (&token2); in x_javascript_lex() 1548 phase5_unget (&token2); in x_javascript_lex() 1555 token_ty token2; in x_javascript_lex() local 1557 phase5_get (&token2); in x_javascript_lex() 1558 if (token2.type == token_type_template) in x_javascript_lex() 1566 free_token (&token2); in x_javascript_lex() 1569 phase5_unget (&token2); in x_javascript_lex()
|
D | x-vala.c | 1172 token_ty token2; in x_vala_lex() local 1174 phase3_get (&token2); in x_vala_lex() 1175 if (token2.type == token_type_plus) in x_vala_lex() 1185 free_token (&token2); in x_vala_lex() 1190 phase3_unget (&token2); in x_vala_lex()
|
D | x-python.c | 1464 token_ty token2; in x_python_lex() local 1468 phase5_get (&token2); in x_python_lex() 1469 switch (token2.type) in x_python_lex() 1476 free_token (&token2); in x_python_lex() 1484 tp2 = &token2; in x_python_lex() 1497 phase5_unget (&token2); in x_python_lex()
|
D | x-php.c | 1353 token_ty token2; in x_php_lex() local 1355 phase4_get (&token2); in x_php_lex() 1356 if (token2.type == token_type_dot) in x_php_lex() 1377 free_token (&token2); in x_php_lex() 1384 phase4_unget (&token2); in x_php_lex()
|
/third_party/libxml2/include/libxml/ |
D | xmlautomata.h | 66 const xmlChar *token2, 73 const xmlChar *token2, 89 const xmlChar *token2, 106 const xmlChar *token2,
|
/third_party/gettext/gnulib-local/lib/libxml/ |
D | xmlautomata.in.h | 95 const xmlChar *token2, 102 const xmlChar *token2, 118 const xmlChar *token2, 135 const xmlChar *token2,
|
/third_party/PyYAML/tests/lib/ |
D | test_tokens.py | 59 for token1, token2 in zip(tokens1, tokens2): 60 assert token1 == token2, (token1, token2)
|
/third_party/parse5/packages/parse5/test/ |
D | formatting-element-list.test.js | 68 const token2 = 'token2'; 85 list.pushElement(element1, token2); 91 assert.strictEqual(list.entries[1].token, token2); 98 assert.strictEqual(list.entries[0].token, token2); 107 assert.strictEqual(list.entries[0].token, token2);
|
/third_party/spirv-tools/test/ |
D | cpp_interface_test.cpp | 294 Optimizer::PassToken token2(std::move(token1)); in TEST() local 298 Optimizer(SPV_ENV_UNIVERSAL_1_1).RegisterPass(std::move(token2))); in TEST() 303 auto token2 = CreateNullPass(); in TEST() local 304 token2 = std::move(token1); in TEST() 308 Optimizer(SPV_ENV_UNIVERSAL_1_1).RegisterPass(std::move(token2))); in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
D | cpp_interface_test.cpp | 294 Optimizer::PassToken token2(std::move(token1)); in TEST() local 298 Optimizer(SPV_ENV_UNIVERSAL_1_1).RegisterPass(std::move(token2))); in TEST() 303 auto token2 = CreateNullPass(); in TEST() local 304 token2 = std::move(token1); in TEST() 308 Optimizer(SPV_ENV_UNIVERSAL_1_1).RegisterPass(std::move(token2))); in TEST()
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
D | cpp_interface_test.cpp | 294 Optimizer::PassToken token2(std::move(token1)); in TEST() local 298 Optimizer(SPV_ENV_UNIVERSAL_1_1).RegisterPass(std::move(token2))); in TEST() 303 auto token2 = CreateNullPass(); in TEST() local 304 token2 = std::move(token1); in TEST() 308 Optimizer(SPV_ENV_UNIVERSAL_1_1).RegisterPass(std::move(token2))); in TEST()
|
/third_party/flutter/skia/third_party/externals/spirv-tools/test/ |
D | cpp_interface_test.cpp | 332 Optimizer::PassToken token2(std::move(token1)); in TEST() local 336 Optimizer(SPV_ENV_UNIVERSAL_1_1).RegisterPass(std::move(token2))); in TEST() 341 auto token2 = CreateNullPass(); in TEST() local 342 token2 = std::move(token1); in TEST() 346 Optimizer(SPV_ENV_UNIVERSAL_1_1).RegisterPass(std::move(token2))); in TEST()
|
/third_party/gettext/libtextstyle/gnulib-local/lib/libcroco/ |
D | cr-parser.c | 1181 *token2 = NULL; in cr_parser_parse_any_core() local 1230 &token2); in cr_parser_parse_any_core() 1232 && token2 && token2->type == PC_TK); in cr_parser_parse_any_core() 1236 &token2); in cr_parser_parse_any_core() 1237 ENSURE_PARSING_COND (status == CR_OK && token2); in cr_parser_parse_any_core() 1239 if (token2->type == PC_TK) { in cr_parser_parse_any_core() 1240 cr_token_destroy (token2); in cr_parser_parse_any_core() 1241 token2 = NULL; in cr_parser_parse_any_core() 1245 (PRIVATE (a_this)->tknzr, token2); in cr_parser_parse_any_core() 1246 token2 = NULL; in cr_parser_parse_any_core() [all …]
|
/third_party/libxml2/os400/libxmlrpg/ |
D | xmlautomata.rpgle | 74 d token2 * value options(*string) const xmlChar * 84 d token2 * value options(*string) const xmlChar * 105 d token2 * value options(*string) const xmlChar * 128 d token2 * value options(*string) const xmlChar *
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | cordz_sample_token_test.cc | 118 CordzSampleToken token2; in TEST() local 120 CordzSampleToken::Iterator rhs = token2.begin(); in TEST()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | glslang.l | 113 …rd_2(TParseContext *context, TExtension extension1, TExtension extension2, int token1, int token2); 114 …rd_2(TParseContext *context, TExtension extension1, TExtension extension2, int token1, int token2); 765 …ord_2(TParseContext *context, TExtension extension1, TExtension extension2, int token1, int token2) in ES3_1_reserved_ES3_1_extension_ES3_2_keyword_2() argument 777 return token2; in ES3_1_reserved_ES3_1_extension_ES3_2_keyword_2() 790 …ord_2(TParseContext *context, TExtension extension1, TExtension extension2, int token1, int token2) in ES3_and_3_1_reserved_ES3_1_extension_ES3_2_keyword_2() argument 802 return token2; in ES3_and_3_1_reserved_ES3_1_extension_ES3_2_keyword_2()
|
/third_party/boost/libs/local_function/doc/ |
D | no_variadic_macros.qbk | 17 (token1) (token2) ... // All compilers. 21 token1, token2, ... // Only compilers with varidic macros.
|
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
D | prefer-string-starts-ends-with.ts | 124 const token2 = tokens2[i]; constant 126 if (token1.type !== token2.type || token1.value !== token2.value) {
|
/third_party/googletest/googlemock/scripts/generator/cpp/ |
D | ast.py | 1331 token = token2 = self._GetNextToken() 1334 token2 = self._GetNextToken() 1335 if token2.token_type == tokenize.SYNTAX and token2.name == '~': 1341 if token2 is not token: 1342 return_type_and_name.insert(1, token2)
|
/third_party/libxml2/ |
D | xmlregexp.c | 5845 const xmlChar *token2, void *data) { in xmlAutomataNewTransition2() argument 5854 if ((token2 == NULL) || (*token2 == 0)) { in xmlAutomataNewTransition2() 5860 lenn = strlen((char *) token2); in xmlAutomataNewTransition2() 5870 memcpy(&str[lenp + 1], token2, lenn); in xmlAutomataNewTransition2() 5905 const xmlChar *token2, void *data) { in xmlAutomataNewNegTrans() argument 5916 if ((token2 == NULL) || (*token2 == 0)) { in xmlAutomataNewNegTrans() 5922 lenn = strlen((char *) token2); in xmlAutomataNewNegTrans() 5932 memcpy(&str[lenp + 1], token2, lenn); in xmlAutomataNewNegTrans() 5972 const xmlChar *token2, in xmlAutomataNewCountTrans2() argument 5986 if ((token2 == NULL) || (*token2 == 0)) { in xmlAutomataNewCountTrans2() [all …]
|