/third_party/openssl/external/perl/Text-Template-1.56/t/ |
D | safe.t | 43 my $text2 = $template1->fill_in(SAFE => $c); 44 ok defined $text2; 81 $text2 = $template1->fill_in(SAFE => $c); 82 ok defined $text2; 96 is $text2, $text3; 102 $text2 =~ s/'kill'/kill/; # 5.8.1 added quote marks around the op name 103 is $text2, $badsafeoutput; 114 $text2 = $template1->fill_in(SAFE => Safe->new); 117 is $text1, $text2;
|
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/t/ |
D | safe.t | 43 my $text2 = $template1->fill_in(SAFE => $c); 44 ok defined $text2; 81 $text2 = $template1->fill_in(SAFE => $c); 82 ok defined $text2; 96 is $text2, $text3; 102 $text2 =~ s/'kill'/kill/; # 5.8.1 added quote marks around the op name 103 is $text2, $badsafeoutput; 114 $text2 = $template1->fill_in(SAFE => Safe->new); 117 is $text1, $text2;
|
/third_party/typescript/tests/baselines/reference/ |
D | instantiateTemplateTagTypeParameterOnVariableStatement.symbols | 16 const text2 = "world"; 17 >text2 : Symbol(text2, Decl(instantiateTemplateTagTypeParameterOnVariableStatement.js, 8, 5)) 20 var text3 = seq(text1)(text2); 24 >text2 : Symbol(text2, Decl(instantiateTemplateTagTypeParameterOnVariableStatement.js, 8, 5))
|
D | instantiateTemplateTagTypeParameterOnVariableStatement.types | 19 const text2 = "world"; 20 >text2 : "world" 24 var text3 = seq(text1)(text2); 26 >seq(text1)(text2) : string 30 >text2 : "world"
|
D | instantiateTemplateTagTypeParameterOnVariableStatement.js | 10 const text2 = "world"; constant 13 var text3 = seq(text1)(text2); 26 declare const text2: "world";
|
/third_party/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
D | CollatorTest.java | 112 for (String text2 : data) { in checkCollation() 113 int jdkRes = jdkColl.compare(text1, text2); in checkCollation() 114 int icuRes = icuColl.compare(text1, text2); in checkCollation() 117 … errln("FAIL: Different results for [text1=" + text1 + ",text2=" + text2 + ") for locale " in checkCollation() 123 CollationKey jdkKey2 = jdkColl.getCollationKey(text2); in checkCollation() 126 com.ibm.icu.text.CollationKey icuKey2 = icuColl.getCollationKey(text2); in checkCollation() 132 … errln("FAIL: Different collationKey comparison results for [text1=" + text1 + ",text2=" + text2 in checkCollation()
|
/third_party/icu/icu4c/source/test/cintltst/ |
D | reapits.c | 409 UChar text2[50]; in TestRegexCAPI() local 413 u_uastrncpy(text2, "abcccxd", UPRV_LENGTHOF(text2)); in TestRegexCAPI() 431 uregex_setText(re, text2, -1, &status); in TestRegexCAPI() 463 UChar text2[50]; in TestRegexCAPI() local 468 u_uastrncpy(text2, "abcccxd", UPRV_LENGTHOF(text2)); in TestRegexCAPI() 480 uregex_setText(re, text2, 7, &status); in TestRegexCAPI() 482 TEST_ASSERT(result == text2); in TestRegexCAPI() 487 uregex_setText(re, text2, 4, &status); in TestRegexCAPI() 489 TEST_ASSERT(result == text2); in TestRegexCAPI() 830 UChar text2[80]; in TestRegexCAPI() local [all …]
|
/third_party/typescript/tests/cases/conformance/jsdoc/ |
D | instantiateTemplateTagTypeParameterOnVariableStatement.ts | 14 const text2 = "world"; constant 17 var text3 = seq(text1)(text2);
|
/third_party/python/Lib/test/ |
D | test_pulldom.py | 335 (text1, elm1, text2) = root.childNodes 341 self.assertIs(elm1.nextSibling, text2) 342 self.assertIs(text2.previousSibling, elm1) 343 self.assertIsNone(text2.nextSibling) 350 self.assertIs(text2.parentNode, root)
|
D | test_minidom.py | 1355 text2 = doc.createTextNode("d") 1356 elem.appendChild(text2) 1358 self.checkWholeText(text2, "d") 1364 self.checkWholeText(text2, "d") 1370 self.checkWholeText(text2, "d") 1374 self.checkWholeText(text2, "cabd") 1390 text2 = elem.lastChild 1394 return doc, elem, text1, splitter, text2 1396 doc, elem, text1, splitter, text2 = setup() 1399 self.checkWholeText(text2, "d") [all …]
|
D | test_textwrap.py | 649 self.text2 = '''\ 664 self.check_wrap(self.text2, 10, expected) 677 self.check_wrap(self.text2, 10, expected) 693 self.check_wrap(self.text2, 10, expected) 713 self.check_wrap(self.text2, 10, expected)
|
/third_party/skia/tests/ |
D | TextBlobTest.cpp | 314 const char text2[] = "Bar"; in DEF_TEST() local 320 auto run = textBlobBuilder.allocRunText(font, glyphCount, 0, 0, SkToInt(strlen(text2))); in DEF_TEST() 322 memcpy(run.utf8text, text2, strlen(text2)); in DEF_TEST() 324 run.clusters[i] = std::min(SkToU32(i), SkToU32(strlen(text2))); in DEF_TEST() 341 REPORTER_ASSERT(reporter, 0 == strncmp(text2, it.text(), it.textSize())); in DEF_TEST()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/ |
D | RBBITest.java | 77 char text2[] = { in TestThaiDictionaryBreakIterator() local 89 brk.setText(new String(text2)); in TestThaiDictionaryBreakIterator() 91 while ((position = brk.next()) != BreakIterator.DONE && position < text2.length) { in TestThaiDictionaryBreakIterator() 98 brk.setText(new String(text2)); in TestThaiDictionaryBreakIterator() 100 while ((position = brk.next()) != BreakIterator.DONE && position < text2.length) { in TestThaiDictionaryBreakIterator()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBITest.java | 80 char text2[] = { in TestThaiDictionaryBreakIterator() local 92 brk.setText(new String(text2)); in TestThaiDictionaryBreakIterator() 94 while ((position = brk.next()) != BreakIterator.DONE && position < text2.length) { in TestThaiDictionaryBreakIterator() 101 brk.setText(new String(text2)); in TestThaiDictionaryBreakIterator() 103 while ((position = brk.next()) != BreakIterator.DONE && position < text2.length) { in TestThaiDictionaryBreakIterator()
|
/third_party/gstreamer/gstplugins_good/tests/examples/qt/qmlsrc/ |
D | main.qml | 38 id: text2
|
/third_party/icu/icu4c/source/test/intltest/ |
D | regcoll.cpp | 1124 static const UChar text2[][CollationRegressionTest::MAX_TOKEN_LEN] = { in TestT7189() local 1149 len2 = calcKeyIncremental(coll, text2[i], -1, key2, sizeof(key2), status); in TestT7189() 1151 errln(UnicodeString("Failed to get a partial collation key for ") + text2[i]); in TestT7189() 1156 …ed: Identical key\n") + " text1: " + text1[i] + "\n" + " text2: " + text2[i] + "\n" + " k… in TestT7189() 1158 …" + " key1 : " + TestUtility::hex(key1, len1) + "\n" + " text2: " + text2[i] + "\n" + " k… in TestT7189()
|
D | convtest.cpp | 765 static const char *text2 = "a"; // U+1F6B2 bicycle: 4 bytes in TestUTF8ToUTF8Overflow() local 766 source = text2; in TestUTF8ToUTF8Overflow() 767 sourceLimit = text2 + strlen(text2); in TestUTF8ToUTF8Overflow() 792 assertTrue("text2 result same as input", memcmp(text2, result, length) == 0); in TestUTF8ToUTF8Overflow()
|
D | regextst.cpp | 4918 UText text2 = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local 4924 regextst_openUTF8FromInvariant(&text2, "abcccxd", -1, &status); in PreAllocatedUTextCAPI() 4925 u_uastrncpy(text2Chars, "abcccxd", sizeof(text2)/2); in PreAllocatedUTextCAPI() 4926 utext_openUChars(&text2, text2Chars, -1, &status); in PreAllocatedUTextCAPI() 4953 utext_setNativeIndex(&text2, 0); in PreAllocatedUTextCAPI() 4954 REGEX_ASSERT(testUTextEqual(resultText, &text2)); in PreAllocatedUTextCAPI() 4958 utext_close(&text2); in PreAllocatedUTextCAPI() 5014 UChar text2[80]; in PreAllocatedUTextCAPI() local 5022 u_uastrncpy(text2, "No match here.", UPRV_LENGTHOF(text2)/2); in PreAllocatedUTextCAPI() 5039 uregex_setText(re, text2, -1, &status); in PreAllocatedUTextCAPI() [all …]
|
/third_party/skia/third_party/externals/expat/expat/tests/ |
D | runtests.c | 2669 const char *text2 = "<doc>&entity;</doc>"; in START_TEST() local 2696 if (_XML_Parse_SINGLE_BYTES(g_parser, text2, (int)strlen(text2), XML_TRUE) in START_TEST() 2739 const char *text2 = "<doc>&entity;</doc>"; in START_TEST() local 2766 if (_XML_Parse_SINGLE_BYTES(g_parser, text2, (int)strlen(text2), XML_TRUE) in START_TEST() 3264 const char *text2 = " World</doc>"; in START_TEST() local 3278 if (_XML_Parse_SINGLE_BYTES(g_parser, text2, (int)strlen(text2), XML_TRUE) in START_TEST() 3986 const char *text2 = "<!ELEMENT el EMPTY>\n" in external_entity_param() local 4006 if (_XML_Parse_SINGLE_BYTES(ext_parser, text2, (int)strlen(text2), XML_TRUE) in external_entity_param() 4322 const char *text2 = "<!ATTLIST doc a1 CDATA 'value'>"; in external_entity_not_standalone() local 4343 if (_XML_Parse_SINGLE_BYTES(ext_parser, text2, (int)strlen(text2), XML_TRUE) in external_entity_not_standalone() [all …]
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
D | TestMultipleParagraphs.java | 55 private static final String text2 = "\u05d0 1-2\u001c\u0630 1-2\u001c1-2"; field in TestMultipleParagraphs 356 src = text2; in testMultipleParagraphs()
|
/third_party/skia/third_party/externals/libpng/ |
D | example.c | 877 char text2[] = "<long text>"; 879 text_ptr[2].text = text2;
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/ |
D | TestMultipleParagraphs.java | 58 private static final String text2 = "\u05d0 1-2\u001c\u0630 1-2\u001c1-2"; field in TestMultipleParagraphs 359 src = text2; in testMultipleParagraphs()
|
/third_party/skia/modules/skparagraph/samples/ |
D | SampleParagraph.cpp | 210 const char* text2 = "(\n"; in drawCode() local 220 builder.addText(text2, strlen(text2)); in drawCode() 728 const std::u16string text2 = u"\u202Dghi"; in bidi() local 738 builder.addText(text2); in bidi() 1909 const char* text2 = "and set up a passcode."; in onDrawContent() local 1932 builder.addText(text2); in onDrawContent() 3229 const char* text2 = "ששש תתת"; in onDrawContent() local 3245 builder.addText(text2); in onDrawContent() 3263 builder.addText(text2); in onDrawContent()
|
/third_party/python/Lib/test/test_tools/ |
D | test_i18n.py | 298 text2 = 'Text to translate2'
|
/third_party/typescript/src/testRunner/unittests/services/ |
D | textChanges.ts | 351 const text2 = ` constant 358 …leTest("insertNodeAfter4", /*placeOpenBraceOnNewLineForFunctions*/ false, text2, /*validateNodes*/…
|