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

12

/external/v8/test/webkit/
H A Ddfg-inline-arguments-use-from-all-the-places.js60 var text1 = "[[object Arguments]: [object Object], b" + __i + ", c" + __i + "]";
63 shouldBe("argsToStr(bar(o, \"b\" + __i, \"c\" + __i))", "\"[[object Arguments],[object Arguments],[object Arguments],[object Arguments],[object Arguments],[object Arguments],[object Arguments],[object Arguments],[object Arguments],[object Arguments]: " + text1 + ", " + text1 + ", " + text1 + ", " + text1 + ", " + text1 + ", " + text2 + ", " + text1 + ", " + text1 + ", " + text2 + ", " + text3 + "]\"");
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
H A DCollatorTest.java106 for (String text1 : data) {
108 int jdkRes = jdkColl.compare(text1, text2);
109 int icuRes = icuColl.compare(text1, text2);
112 errln("FAIL: Different results for [text1=" + text1 + ",text2=" + text2 + ") for locale "
117 CollationKey jdkKey1 = jdkColl.getCollationKey(text1);
120 com.ibm.icu.text.CollationKey icuKey1 = icuColl.getCollationKey(text1);
127 errln("FAIL: Different collationKey comparison results for [text1=" + text1 + ",text2=" + text2
/external/llvm/test/MC/X86/AlignedBundling/
H A Ddifferent-sections.s9 .section text1, "x"
10 # CHECK: section text1
H A Dswitch-section-locked-error.s9 .section text1, "x"
/external/icu/icu4c/source/test/cintltst/
H A Dreapits.c396 UChar text1[50]; local
400 u_uastrncpy(text1, "abcccd", UPRV_LENGTHOF(text1));
413 uregex_setText(re, text1, -1, &status);
425 uregex_setText(re, text1, -1, &status);
431 uregex_setText(re, text1, 5, &status);
437 uregex_setText(re, text1, 6, &status);
450 UChar text1[50]; local
455 u_uastrncpy(text1, "abcccd", UPRV_LENGTHOF(text1));
487 UChar text1[50]; local
542 UChar text1[50]; local
623 UChar text1[80]; local
817 UChar text1[80]; local
889 UChar text1[80]; /* "Replace xaax x1x x...x." */ local
1548 UText text1 = UTEXT_INITIALIZER; local
1595 UText text1 = UTEXT_INITIALIZER; local
1655 UText text1 = UTEXT_INITIALIZER; local
1702 UChar text1[50]; local
1760 UChar text1[80]; local
1814 UChar text1[80]; local
1863 UChar text1[80]; local
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
H A DResourceExtractorTest.java29 assertThat(resourceExtractor.getResourceId("android:id/text1"), equalTo(android.R.id.text1));
H A DResourceLoaderTest.java72 TextView textView = (TextView) view.findViewById(android.R.id.text1);
90 TextView textView = (TextView) view.findViewById(android.R.id.text1);
H A DTestAttributeSetTest.java35 attributes.put("android:id", "@android:id/text1");
37 assertThat(testAttributeSet.getAttributeResourceValue("android", "id", 0), equalTo(android.R.id.text1));
42 attributes.put("id", "@id/text1");
56 attributes.put("android:id", "@+id/text1");
59 assertThat(testAttributeSet.getAttributeResourceValue("android", "id", 0), equalTo(android.R.id.text1));
64 attributes.put("android:id", "@+id/text1");
67 assertThat(testAttributeSet.getAttributeResourceValue("android", "id", 0), equalTo(R.id.text1));
H A DViewLoaderTest.java70 TextView textView = (TextView) view.findViewById(android.R.id.text1);
78 TextView textView = (TextView) view.findViewById(android.R.id.text1);
86 TextView textView = (TextView) view.findViewById(android.R.id.text1);
94 TextView textView = (TextView) view.findViewById(android.R.id.text1);
102 TextView textView = (TextView) view.findViewById(android.R.id.text1);
111 TextView textView = (TextView) view.findViewById(android.R.id.text1);
120 TextView textView = (TextView) view.findViewById(android.R.id.text1);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/
H A DR.java26 public static final int text1 = nextId++; field in class:R.id
/external/icu/icu4c/source/test/intltest/
H A Dregcoll.cpp1205 static const UChar text1[][CollationRegressionTest::MAX_TOKEN_LEN] = { local
1230 for (i = 0; i < sizeof(text1) / (CollationRegressionTest::MAX_TOKEN_LEN * sizeof(UChar)); i++) {
1234 len1 = calcKeyIncremental(coll, text1[i], -1, key1, sizeof(key1), status);
1236 errln(UnicodeString("Failed to get a partial collation key for ") + text1[i]);
1246 errln(UnicodeString("Failed: Identical key\n") + " text1: " + text1[i] + "\n" + " text2: " + text2[i] + "\n" + " key : " + TestUtility::hex(key1, len1));
1248 logln(UnicodeString("Keys produced -\n") + " text1: " + text1[i] + "\n" + " key1 : " + TestUtility::hex(key1, len1) + "\n" + " text2: " + text2[i] + "\n" + " key2 : "
H A Dregextst.cpp5029 UText text1 = UTEXT_INITIALIZER; local
5035 regextst_openUTF8FromInvariant(&text1, "abcccd", -1, &status);
5044 uregex_setUText(re, &text1, &status);
5049 utext_setNativeIndex(&text1, 0);
5050 REGEX_ASSERT(testUTextEqual(resultText, &text1));
5056 utext_setNativeIndex(&text1, 0);
5057 REGEX_ASSERT(testUTextEqual(resultText, &text1));
5069 utext_close(&text1);
5077 UChar text1[80]; local
5082 u_uastrncpy(text1, "nois
5125 UChar text1[80]; local
5176 UChar text1[80]; local
[all...]
H A Drbbiapts.cpp264 CharacterIterator* text1= new StringCharacterIterator(str1); local
265 CharacterIterator* text1Clone = text1->clone();
295 rb->adoptText(text1);
296 if(rb->getText() != *text1)
H A Ditrbnf.cpp84 UChar text1[] = { local
113 UnicodeString expected(text1);
H A Dnumfmtst.cpp6536 UnicodeString text1, text2; local
6544 fmt->format(value, text1);
6551 if (text1 != text2) {
6552 errln((UnicodeString)"NumberFormat::format() should return the same result - text1="
6553 + text1 + " text2=" + text2);
/external/libpng/
H A Dexample.c893 char text1[]="Leonardo DaVinci";
895 text_ptr[1].text = text1;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
H A DRBBIAPITest.java125 CharacterIterator text1 = new StringCharacterIterator(str1);
126 //CharacterIterator text1Clone = (CharacterIterator) text1.clone();
129 if (!wordIter1.getText().equals(text1))
144 || charIter1.getText() != text1)
148 rb.adoptText(text1);
149 if (rb.getText() != text1)
/external/tinyxml/
H A Dxmltest.cpp653 TiXmlElement text1( "text" );
654 parse1 >> text1; local
657 text1.FirstChild()->Value(),
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAlertDialog.java207 adapter = new ArrayAdapter<CharSequence>(context, R.layout.simple_list_item_checked, R.id.text1, items);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DNumberFormatTest.java3063 String text1 = cfmt.format(value);
3070 if (!text1.equals(text2)) {
3071 errln("NumberFormat.format() should return the same result - text1="
3072 + text1 + " text2=" + text2);
3086 String text1 = df.format(-0.01);
3092 if (!text1.equals(text2)) {
3093 errln("NumberFormat.format() should return the same result - text1="
3094 + text1 + " text2=" + text2);
/external/robolectric/lib/main/
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1805 milliseconds

12