/external/v8/test/webkit/ |
D | dfg-inline-arguments-use-from-all-the-places.js | 60 var text1 = "[[object Arguments]: [object Object], b" + __i + ", c" + __i + "]"; variable 63 …ject Arguments]: " + text1 + ", " + text1 + ", " + text1 + ", " + text1 + ", " + text1 + ", " + te…
|
/external/icu/icu4c/source/test/cintltst/ |
D | reapits.c | 396 UChar text1[50]; in TestRegexCAPI() local 400 u_uastrncpy(text1, "abcccd", UPRV_LENGTHOF(text1)); in TestRegexCAPI() 413 uregex_setText(re, text1, -1, &status); in TestRegexCAPI() 425 uregex_setText(re, text1, -1, &status); in TestRegexCAPI() 431 uregex_setText(re, text1, 5, &status); in TestRegexCAPI() 437 uregex_setText(re, text1, 6, &status); in TestRegexCAPI() 450 UChar text1[50]; in TestRegexCAPI() local 455 u_uastrncpy(text1, "abcccd", UPRV_LENGTHOF(text1)); in TestRegexCAPI() 461 uregex_setText(re, text1, -1, &status); in TestRegexCAPI() 463 TEST_ASSERT(result == text1); in TestRegexCAPI() [all …]
|
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
D | CollatorTest.java | 106 for (String text1 : data) { in checkCollation() 108 int jdkRes = jdkColl.compare(text1, text2); in checkCollation() 109 int icuRes = icuColl.compare(text1, text2); in checkCollation() 112 … errln("FAIL: Different results for [text1=" + text1 + ",text2=" + text2 + ") for locale " in checkCollation() 117 CollationKey jdkKey1 = jdkColl.getCollationKey(text1); in checkCollation() 120 com.ibm.icu.text.CollationKey icuKey1 = icuColl.getCollationKey(text1); in checkCollation() 127 … errln("FAIL: Different collationKey comparison results for [text1=" + text1 + ",text2=" + text2 in checkCollation()
|
/external/llvm/test/MC/X86/AlignedBundling/ |
D | different-sections.s | 9 .section text1, "x" 10 # CHECK: section text1
|
D | switch-section-locked-error.s | 9 .section text1, "x"
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ |
D | TestAttributeSetTest.java | 37 …tThat(testAttributeSet.getAttributeResourceValue("android", "id", 0), equalTo(android.R.id.text1)); in getSystemAttributeResourceValue_shouldReturnTheResourceValue() 59 …tThat(testAttributeSet.getAttributeResourceValue("android", "id", 0), equalTo(android.R.id.text1)); in shouldCopeWithDefiningSystemIds() 67 … assertThat(testAttributeSet.getAttributeResourceValue("android", "id", 0), equalTo(R.id.text1)); in shouldCopeWithDefiningLocalIds()
|
D | ViewLoaderTest.java | 70 TextView textView = (TextView) view.findViewById(android.R.id.text1); in testChoosesLayoutBasedOnDefaultScreenSize() 78 TextView textView = (TextView) view.findViewById(android.R.id.text1); in testChoosesLayoutBasedOnSearchPath_choosesFirstFileFoundOnPath() 86 TextView textView = (TextView) view.findViewById(android.R.id.text1); in testChoosesLayoutBasedOnSearchPath_respectsOrderOfPath() 94 TextView textView = (TextView) view.findViewById(android.R.id.text1); in testChoosesLayoutBasedOnDefaultVersion() 102 TextView textView = (TextView) view.findViewById(android.R.id.text1); in testChoosesLayoutBasedOnNewestVersion() 111 TextView textView = (TextView) view.findViewById(android.R.id.text1); in testChoosesLayoutBasedOnSearchPath_choosesFirstFileFoundOnPathWithVersionNumber() 120 TextView textView = (TextView) view.findViewById(android.R.id.text1); in testChoosesLayoutBasedOnSearchPath_choosesBestFileFoundOnPathWithVersionNumber()
|
D | ResourceLoaderTest.java | 72 TextView textView = (TextView) view.findViewById(android.R.id.text1); in testChoosesLayoutBasedOnSearchPath_respectsOrderOfPath() 90 TextView textView = (TextView) view.findViewById(android.R.id.text1); in checkForPollutionHelper()
|
D | ResourceExtractorTest.java | 29 … assertThat(resourceExtractor.getResourceId("android:id/text1"), equalTo(android.R.id.text1)); in shouldPrefixAllSystemResourcesWithAndroid()
|
/external/icu/icu4c/source/test/intltest/ |
D | regcoll.cpp | 1205 static const UChar text1[][CollationRegressionTest::MAX_TOKEN_LEN] = { in TestT7189() local 1230 for (i = 0; i < sizeof(text1) / (CollationRegressionTest::MAX_TOKEN_LEN * sizeof(UChar)); i++) { in TestT7189() 1234 len1 = calcKeyIncremental(coll, text1[i], -1, key1, sizeof(key1), status); in TestT7189() 1236 errln(UnicodeString("Failed to get a partial collation key for ") + text1[i]); in TestT7189() 1246 …errln(UnicodeString("Failed: Identical key\n") + " text1: " + text1[i] + "\n" + " text2: " +… in TestT7189() 1248 …logln(UnicodeString("Keys produced -\n") + " text1: " + text1[i] + "\n" + " key1 : " + TestU… in TestT7189()
|
D | regextst.cpp | 5029 UText text1 = UTEXT_INITIALIZER; in PreAllocatedUTextCAPI() local 5035 regextst_openUTF8FromInvariant(&text1, "abcccd", -1, &status); in PreAllocatedUTextCAPI() 5044 uregex_setUText(re, &text1, &status); in PreAllocatedUTextCAPI() 5049 utext_setNativeIndex(&text1, 0); in PreAllocatedUTextCAPI() 5050 REGEX_ASSERT(testUTextEqual(resultText, &text1)); in PreAllocatedUTextCAPI() 5056 utext_setNativeIndex(&text1, 0); in PreAllocatedUTextCAPI() 5057 REGEX_ASSERT(testUTextEqual(resultText, &text1)); in PreAllocatedUTextCAPI() 5069 utext_close(&text1); in PreAllocatedUTextCAPI() 5077 UChar text1[80]; in PreAllocatedUTextCAPI() local 5082 … u_uastrncpy(text1, "noise abc interior def, and this is off the end", UPRV_LENGTHOF(text1)); in PreAllocatedUTextCAPI() [all …]
|
D | rbbiapts.cpp | 264 CharacterIterator* text1= new StringCharacterIterator(str1); in TestGetSetAdoptText() local 265 CharacterIterator* text1Clone = text1->clone(); in TestGetSetAdoptText() 295 rb->adoptText(text1); in TestGetSetAdoptText() 296 if(rb->getText() != *text1) in TestGetSetAdoptText()
|
D | itrbnf.cpp | 84 UChar text1[] = { in TestHebrewFraction() local 113 UnicodeString expected(text1); in TestHebrewFraction()
|
D | numfmtst.cpp | 6536 UnicodeString text1, text2; in TestCurrencyFractionDigits() local 6544 fmt->format(value, text1); in TestCurrencyFractionDigits() 6551 if (text1 != text2) { in TestCurrencyFractionDigits() 6553 + text1 + " text2=" + text2); in TestCurrencyFractionDigits()
|
/external/valgrind/auxprogs/ |
D | DotToScc.hs | 65 [text1, "->", text2] -> Just (text1, text2)
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/ |
D | R.java | 26 public static final int text1 = nextId++; field in R.id
|
/external/libpng/ |
D | example.c | 893 char text1[]="Leonardo DaVinci"; 895 text_ptr[1].text = text1;
|
/external/tinyxml/ |
D | xmltest.cpp | 653 TiXmlElement text1( "text" ); in main() local 654 parse1 >> text1; in main() 657 text1.FirstChild()->Value(), in main()
|
/external/markdown/docs/ |
D | using_as_module.txt | 50 html1 = md.convert(text1) 95 html1 = md.convert(text1)
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBIAPITest.java | 125 CharacterIterator text1 = new StringCharacterIterator(str1); in TestGetSetText() local 129 if (!wordIter1.getText().equals(text1)) in TestGetSetText()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowAlertDialog.java | 207 …er = new ArrayAdapter<CharSequence>(context, R.layout.simple_list_item_checked, R.id.text1, items); in show()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | NumberFormatTest.java | 3063 String text1 = cfmt.format(value); in TestCurrencyFractionDigits() local 3070 if (!text1.equals(text2)) { in TestCurrencyFractionDigits() 3072 + text1 + " text2=" + text2); in TestCurrencyFractionDigits() 3086 String text1 = df.format(-0.01); in TestNegZeroRounding() local 3092 if (!text1.equals(text2)) { in TestNegZeroRounding() 3094 + text1 + " text2=" + text2); in TestNegZeroRounding()
|
/external/robolectric/lib/main/ |
D | commons-codec-1.6.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.ui.ide_3.6.2.M20101117-0800.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |