Home
last modified time | relevance | path

Searched refs:text1 (Results 1 - 25 of 28) sorted by relevance

12

/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/t/
H A Dsafe.t40 my $text1 = $template1->fill_in();
41 ok defined $text1;
51 # print +($text1 eq $text3 ? '' : 'not '), "ok $n\n";
61 # print +($text1 eq $text2 ? '' : 'not '), "ok $n\n";
64 is $text1, $goodoutput;
78 $text1 = $template1->fill_in();
79 ok defined $text1;
90 # (11) text1 and text4 should be the same (using safe in between
92 is $text1, $text4;
98 # (13) text1 shoul
[all...]
/third_party/openssl/external/perl/Text-Template-1.56/t/
H A Dsafe.t40 my $text1 = $template1->fill_in();
41 ok defined $text1;
51 # print +($text1 eq $text3 ? '' : 'not '), "ok $n\n";
61 # print +($text1 eq $text2 ? '' : 'not '), "ok $n\n";
64 is $text1, $goodoutput;
78 $text1 = $template1->fill_in();
79 ok defined $text1;
90 # (11) text1 and text4 should be the same (using safe in between
92 is $text1, $text4;
98 # (13) text1 shoul
[all...]
/third_party/icu/icu4c/source/test/cintltst/
H A Dreapits.c408 UChar text1[50]; in TestRegexCAPI() local
412 u_uastrncpy(text1, "abcccd", UPRV_LENGTHOF(text1)); in TestRegexCAPI()
425 uregex_setText(re, text1, -1, &status); in TestRegexCAPI()
437 uregex_setText(re, text1, -1, &status); in TestRegexCAPI()
443 uregex_setText(re, text1, 5, &status); in TestRegexCAPI()
449 uregex_setText(re, text1, 6, &status); in TestRegexCAPI()
462 UChar text1[50]; in TestRegexCAPI() local
467 u_uastrncpy(text1, "abcccd", UPRV_LENGTHOF(text1)); in TestRegexCAPI()
499 UChar text1[50]; TestRegexCAPI() local
554 UChar text1[50]; TestRegexCAPI() local
635 UChar text1[80]; TestRegexCAPI() local
829 UChar text1[80]; TestRegexCAPI() local
901 UChar text1[80]; /* "Replace xaax x1x x...x." */ TestRegexCAPI() local
1560 UText text1 = UTEXT_INITIALIZER; TestUTextAPI() local
1607 UText text1 = UTEXT_INITIALIZER; TestUTextAPI() local
1667 UText text1 = UTEXT_INITIALIZER; TestUTextAPI() local
1714 UChar text1[50]; TestUTextAPI() local
1772 UChar text1[80]; TestUTextAPI() local
1826 UChar text1[80]; TestUTextAPI() local
1875 UChar text1[80]; TestUTextAPI() local
[all...]
/third_party/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
H A DCollatorTest.java111 for (String text1 : 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()
122 CollationKey jdkKey1 = jdkColl.getCollationKey(text1); in checkCollation()
125 com.ibm.icu.text.CollationKey icuKey1 = icuColl.getCollationKey(text1); in checkCollation()
132 errln("FAIL: Different collationKey comparison results for [text1=" + text1 + ",text2=" + text2 in checkCollation()
/third_party/typescript/tests/baselines/reference/
H A DinstantiateTemplateTagTypeParameterOnVariableStatement.js9 const text1 = "hello";
13 var text3 = seq(text1)(text2);
25 declare const text1: "hello";
H A Dparserharness.js146 export function noDiff(text1, text2) {
147 text1 = text1.replace(/^\s+|\s+$/g, "").replace(/\r\n?/g, "\n");
150 if (text1 !== text2) {
152 var text1Lines = text1.split(/\n/);
2209 function noDiff(text1, text2) {
2210 text1 = text1.replace(/^\s+|\s+$/g, "").replace(/\r\n?/g, "\n");
2212 if (text1 !== text2) {
2214 var text1Lines = text1
[all...]
/third_party/python/Lib/test/
H A Dtest_textwrap.py646 self.text1 = '''\
656 self.check_wrap(self.text1, 50, expected)
660 self.check_wrap(self.text1, 10, expected)
669 self.check_wrap(self.text1, 50, expected, break_on_hyphens=False)
673 self.check_wrap(self.text1, 10, expected, break_on_hyphens=False)
684 self.check_wrap(self.text1, 50, expected, break_long_words=False)
689 self.check_wrap(self.text1, 10, expected, break_long_words=False)
700 self.check_wrap(self.text1, 50, expected,
707 self.check_wrap(self.text1, 10, expected,
H A Dtest_pulldom.py328 (text1, elm1, text2) = root.childNodes
331 self.assertIsNone(text1.previousSibling)
332 self.assertIs(text1.nextSibling, elm1)
333 self.assertIs(elm1.previousSibling, text1)
341 self.assertIs(text1.parentNode, root)
H A Dtest_minidom.py1411 text1 = elem.firstChild
1413 splitter = text1.nextSibling
1415 elem.insertBefore(doc.createCDATASection("c"), text1)
1416 return doc, elem, text1, splitter, text2
1418 doc, elem, text1, splitter, text2 = setup()
1419 text = text1.replaceWholeText("new content")
1424 doc, elem, text1, splitter, text2 = setup()
1427 self.checkWholeText(text1, "cab")
1430 doc, elem, text1, splitter, text2 = setup()
1431 text = text1
[all...]
H A Dtest_unicode.py2537 for text1, text2 in itertools.combinations(strings, 2):
2538 equal = (text1 is text2)
2539 self.assertEqual(text1 == text2, equal)
2540 self.assertEqual(text1 != text2, not equal)
2543 self.assertTrue(text1 <= text2)
2544 self.assertTrue(text1 >= text2)
2546 # text1 is text2: duplicate strings to skip the "str1 == str2"
2549 copy1 = duplicate_string(text1)
H A Dstring_tests.py351 text1 = 'babbaa' * N + pattern1
352 self.checkequal(len(text1)-len(pattern1),
353 text1, 'find', pattern1)
/third_party/lame/ACM/tinyxml/
H A Dxmltest.cpp316 TiXmlElement text1( "text" ); in main()
317 parse1 >> text1; in main() local
320 text1.FirstChild()->Value(), in main()
/third_party/skia/tests/
H A DTextBlobTest.cpp313 const char text1[] = "Foo"; in DEF_TEST() local
316 int glyphCount = font.countText(text1, strlen(text1), SkTextEncoding::kUTF8); in DEF_TEST()
318 (void)font.textToGlyphs(text1, strlen(text1), SkTextEncoding::kUTF8, glyphs.get(), glyphCount); in DEF_TEST()
/third_party/skia/third_party/externals/expat/expat/tests/
H A Druntests.c2668 const char *text1 = "<?xml version='1.0' encoding='us-ascii'?>\n"; in START_TEST() local
2681 if (_XML_Parse_SINGLE_BYTES(g_parser, text1, (int)strlen(text1), XML_FALSE) in START_TEST()
2737 const char *text1 = "<?xml version='1.0' encoding='us-ascii'?>\n" in START_TEST() local
2751 if (_XML_Parse_SINGLE_BYTES(g_parser, text1, (int)strlen(text1), XML_FALSE) in START_TEST()
3263 const char *text1 = "<doc>Hello "; in START_TEST() local
3272 if (_XML_Parse_SINGLE_BYTES(g_parser, text1, (int)strlen(text1), XML_FALSE) in START_TEST()
4037 const char *text1 in external_entity_param() local
4284 const char *text1 = "<!ELEMENT doc EMPTY>\\n" external_entity_valuer() local
4374 const char *text1 = "<!ELEMENT doc EMPTY>\\n" external_entity_not_standalone() local
4422 const char *text1 = "<!ELEMENT doc EMPTY>\\n" external_entity_value_aborter() local
4612 const char *text1 = (const char *)XML_GetUserData(parser); external_entity_public() local
7044 const char *text1 START_TEST() local
7059 const char *text1 = "<foo:e xmlns:foo='http://example.org/'" START_TEST() local
7083 const char *text1 START_TEST() local
8774 const char *text1 = "<?xml version='1.0' encoding='us-ascii'?>\\n" START_TEST() local
10591 const char *text1 START_TEST() local
11147 const char *text1 START_TEST() local
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dregcoll.cpp1115 static const UChar text1[][CollationRegressionTest::MAX_TOKEN_LEN] = { in TestT7189() local
1140 for (i = 0; i < UPRV_LENGTHOF(text1); i++) { in TestT7189()
1144 len1 = calcKeyIncremental(coll, text1[i], -1, key1, sizeof(key1), status); in TestT7189()
1146 errln(UnicodeString("Failed to get a partial collation key for ") + text1[i]); in TestT7189()
1156 errln(UnicodeString("Failed: Identical key\n") + " text1: " + text1[i] + "\n" + " text2: " + text2[i] + "\n" + " key : " + TestUtility::hex(key1, len1)); in TestT7189()
1158 logln(UnicodeString("Keys produced -\n") + " text1: " + text1[i] + "\n" + " key1 : " + TestUtility::hex(key1, len1) + "\n" + " text2: " + text2[i] + "\n" + " key2 : " in TestT7189()
H A Dregextst.cpp4917 UText text1 = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local
4923 regextst_openUTF8FromInvariant(&text1, "abcccd", -1, &status); in PreAllocatedUTextCAPI()
4932 uregex_setUText(re, &text1, &status); in PreAllocatedUTextCAPI()
4937 utext_setNativeIndex(&text1, 0); in PreAllocatedUTextCAPI()
4938 REGEX_ASSERT(testUTextEqual(resultText, &text1)); in PreAllocatedUTextCAPI()
4944 utext_setNativeIndex(&text1, 0); in PreAllocatedUTextCAPI()
4945 REGEX_ASSERT(testUTextEqual(resultText, &text1)); in PreAllocatedUTextCAPI()
4957 utext_close(&text1); in PreAllocatedUTextCAPI()
4965 UChar text1[80]; in PreAllocatedUTextCAPI() local
4970 u_uastrncpy(text1, "nois in PreAllocatedUTextCAPI()
5013 UChar text1[80]; PreAllocatedUTextCAPI() local
5064 UChar text1[80]; PreAllocatedUTextCAPI() local
[all...]
H A Drbbiapts.cpp273 CharacterIterator* text1= new StringCharacterIterator(str1); in TestGetSetAdoptText() local
274 CharacterIterator* text1Clone = text1->clone(); in TestGetSetAdoptText()
304 rb->adoptText(text1); in TestGetSetAdoptText()
305 if(rb->getText() != *text1) in TestGetSetAdoptText()
H A Ditrbnf.cpp96 UChar text1[] = { in TestHebrewFraction() local
125 UnicodeString expected(text1); in TestHebrewFraction()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/
H A DRBBIAPITest.java139 CharacterIterator text1 = new StringCharacterIterator(str1); in TestGetSetText()
140 //CharacterIterator text1Clone = (CharacterIterator) text1.clone(); in TestGetSetText()
143 if (!wordIter1.getText().equals(text1)) in TestGetSetText()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
H A DRBBIAPITest.java136 CharacterIterator text1 = new StringCharacterIterator(str1); in TestGetSetText()
137 //CharacterIterator text1Clone = (CharacterIterator) text1.clone(); in TestGetSetText()
140 if (!wordIter1.getText().equals(text1)) in TestGetSetText()
/third_party/skia/modules/skparagraph/samples/
H A DSampleParagraph.cpp209 const char* text1 = "RaisedButton"; in drawCode() local
218 builder.addText(text1, strlen(text1)); in drawCode()
727 const std::u16string text1 = u"\u202EFED"; in bidi() local
735 builder.addText(text1); in bidi()
765 const std::u16string text1 = variable
772 bidi(canvas, width, height * 3, text1, u"", 5);
1908 const char* text1 = "Go to device settings "; variable
1925 builder.addText(text1);
2411 //auto text1
3228 const char* text1 = "אאא בבב גגג דדד ההה"; global() variable
[all...]
/third_party/python/Lib/test/test_tools/
H A Dtest_i18n.py317 text1 = 'Text to translate1'
324 sfile.write(f'_({text1!r})')
336 self.assertIn(f'msgid "{text1}"', data)
/third_party/elfio/tests/
H A DELFIOTest.cpp1026 const section* text1 = reader_no_compression.sections[1]; in TEST() local
1027 EXPECT_EQ( text1->get_size(), 36744 ); in TEST()
1031 EXPECT_EQ( text2->get_size(), text1->get_size() * 2 ); in TEST()
/third_party/skia/modules/skparagraph/tests/
H A DSkParagraphTest.cpp1068 const char* text1 = "Red Roboto"; // [0:10) in UNIX_ONLY_TEST() local
1092 builder.addText(text1, strlen(text1)); in UNIX_ONLY_TEST()
1148 REPORTER_ASSERT(reporter, equal(impl->text().begin(), textRange, text1)); in UNIX_ONLY_TEST()
2147 const char* text1 = "This text should be"; in UNIX_ONLY_TEST() local
2174 builder.addText(text1, strlen(text1)); in UNIX_ONLY_TEST()
2268 const char* text1 = "No italic "; in UNIX_ONLY_TEST() local
2281 builder.addText(text1, strlen(text1)); in UNIX_ONLY_TEST()
3786 const char* text1 = "AVAVAWAH A0 V0 VA To The Lo"; UNIX_ONLY_TEST() local
4057 const char* text1 = "fluttser "; UNIX_ONLY_TEST() local
4282 const char* text1 = "Roboto 字典 "; // Roboto + unresolved UNIX_ONLY_TEST() local
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DNumberFormatTest.java3694 String text1 = cfmt.format(value); in TestCurrencyFractionDigits()
3701 if (!text1.equals(text2)) { in TestCurrencyFractionDigits()
3702 errln("NumberFormat.format() should return the same result - text1=" in TestCurrencyFractionDigits()
3703 + text1 + " text2=" + text2); in TestCurrencyFractionDigits()
3718 String text1 = df.format(-0.01); in TestNegZeroRounding()
3724 if (!text1.equals(text2)) { in TestNegZeroRounding()
3725 errln("NumberFormat.format() should return the same result - text1=" in TestNegZeroRounding()
3726 + text1 + " text2=" + text2); in TestNegZeroRounding()

Completed in 70 milliseconds

12