Searched defs:test2 (Results 1 - 25 of 540) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/chromium_org/chrome/common/extensions/api/
H A Dextension_api_unittest.cc146 {"test2", false},
147 {"test2.foo", true},
148 {"test2.bar", true},
149 {"test2.baz", false},
150 {"test2.qux", false},
194 { "test2", true, Feature::WEB_PAGE_CONTEXT, GURL("http://google.com") },
195 { "test2", false, Feature::BLESSED_EXTENSION_CONTEXT,
197 { "test2.foo", false, Feature::WEB_PAGE_CONTEXT,
199 { "test2.foo", true, Feature::CONTENT_SCRIPT_CONTEXT, GURL() },
323 { "test2", tru
758 base::DictionaryValue* test2 = new base::DictionaryValue(); local
[all...]
/external/chromium_org/net/base/registry_controlled_domains/
H A Dregistry_controlled_domain_unittest.cc13 namespace test2 { namespace in namespace:__anon9055
267 UseDomainData(test2::kDafsa);
/external/chromium_org/third_party/icu/source/samples/citer/
H A Dciter.cpp51 UCharCharacterIterator* test2 = (UCharCharacterIterator*)iter.clone(); local
55 if (iter != *test2 ) {
62 test2->getText(result2);
105 delete test2;
118 StringCharacterIterator* test2 = (StringCharacterIterator*)iter.clone(); local
120 if (iter != *test2 ) {
127 test2->getText(result2);
168 delete test2;
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcapitst.c554 UChar* test2; local
564 test2=(UChar*)malloc(sizeof(UChar) * 6);
566 u_uastrcpy(test2, "abcda");
570 doAssert( (!ucol_equal(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" != \"abcda\" ");
571 doAssert( (ucol_greater(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" >>> \"abcda\" ");
572 doAssert( (ucol_greaterOrEqual(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"Abcda\" >>> \"abcda\"");
577 doAssert( (ucol_equal(col, test1, u_strlen(test1), test2, u_strle
640 UChar test2[6]; local
1057 UChar *test1, *test2, *test3; local
1202 UChar *test1, *test2, *test3; local
[all...]
H A Dcitertst.c431 UChar test2[50]; local
434 u_uastrcpy(test2, "has the highest probability of detecting");
572 UChar test2[50]; local
575 u_uastrcpy(test2, "has the highest probability of detecting");
714 UChar test2[50]; local
717 u_uastrcpy(test2, "has the highest probability of detecting");
727 iter2=ucol_openElements(en_us, test2, u_strlen(test2), &status);
H A Dcmsccoll.c3443 static const char *test2[] = { local
3516 genericLocaleStarterWithOptions("ja", test2, sizeof(test2)/sizeof(test2[0]), att, val, 1);
3519 genericLocaleStarterWithOptions("ja", test2, sizeof(test2)/sizeof(test2[0]), attShifted, valShifted, 2);
4632 const static char *test2[] = { local
4667 genericRulesStarter(rules, test2, sizeof(test2)/sizeo
[all...]
H A Dcrestst.c156 UResourceBundle *test1 = 0, *test2 = 0; local
183 test2=ures_open(testdatapath, locale, &err);
190 result2= ures_getStringByKey(test2, "string_in_Root_te_te_IN", &resultLen, &err);
232 ures_close(test2);
H A Dcreststn.c1490 UResourceBundle *test1 = 0, *test2 = 0,*empty = 0; local
1531 test2=ures_open(testdatapath, locale, &err);
1538 result2= tres_getString(test2, -1, "string_in_Root_te_te_IN", &len2, &err);
1565 ures_close(test2);
H A Duenumtst.c139 static const UChar* test2[] = { variable
280 UEnumeration *en = getuchArrayEnum(test2, sizeof(test2)/sizeof(test2[0]));
445 u = uenum_openUCharStringsEnumeration(test2, 4, &status);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dapicoll.cpp440 UnicodeString test2("abcda");
468 doAssert(col->greater(test1, test2), "Result should be \"abCda\" >>> \"abcda\" ");
469 doAssert(someCollators[index]->equals(test1, test2), "Result should be \"abcda\" == \"abCda\"");
508 doAssert(!(col1->hashCode() == col2->hashCode()), "Hash test2 result incorrect" );
516 UnicodeString test2("abcda");
522 col3->getCollationKey(test2, sortk2, status);
523 col3->getCollationKey(test2, sortk3, status);
549 UnicodeString test1("Abcda"), test2("abcda");
569 doAssert((sortk1.compareTo(col->getCollationKey(test2, sortk2, key2Status)))
633 col->getCollationKey(test2, sortk
1112 test2[6] = {0x61, 0x62, 0x63, 0x64, 0x61, 0}, local
[all...]
H A Dcitrtest.cpp205 CharacterIterator* test2 = new StringCharacterIterator(testText, 5); local
217 if (*test1 == *test2 || *test1 == *test3 || *test1 == *test4)
222 if (test1->hashCode() == test2->hashCode() || test1->hashCode() == test3->hashCode()
240 if (*test1 != *test2 || *test1 == *test5)
247 delete test2;
291 UCharCharacterIterator* test2 = new UCharCharacterIterator(testText, u_strlen(testText), 5); local
314 if (*test1 == *test2 || *test1 == *test3 || *test1 == *test4 )
322 if (test1->hashCode() == test2->hashCode() || test1->hashCode() == test3->hashCode()
352 if (*test1 != *test2 || *test1 == *test5)
363 delete test2;
[all...]
H A Ditercoll.h113 const UnicodeString test2; member in class:CollationIteratorTest
H A Dregcoll.cpp48 const UnicodeString test2 = "Xf_ile What subset of all possible test cases has the lowest probability of detecting the least errors?"; local
425 const UnicodeString test2(chars2);
437 CollationElementIterator *i2 = c2->createCollationElementIterator(test2);
790 //obsolete- static const UChar test2[][CollationRegressionTest::MAX_TOKEN_LEN] =
796 //obsolete- compareArray(*c, test2, ARRAY_LENGTH(test2));
906 static const UChar test2[][CollationRegressionTest::MAX_TOKEN_LEN] = local
912 compareArray(*c, test2, ARRAY_LENGTH(test2));
H A Dtransrt.cpp376 void test2(UBool quick, int32_t density);
534 test2(quickRt, density);
561 void RTTest::test2(UBool quickRt, int32_t density) { function in class:RTTest
H A Dustrtest.cpp104 UnicodeString test2(temp, 15);
107 if (test2 != expectedValue)
108 errln("extract() failed: expected \"" + expectedValue + "\"\n,got \"" + test2 + "\"");
110 test2 += " for me to go!\n";
112 if (test2 != expectedValue)
113 errln("operator+=() failed: expected \"" + expectedValue + "\"\n,got \"" + test2 + "\"");
117 if (test2.length() != 30)
118 errln(UnicodeString("length() failed: expected 30, got ") + test2.length());
267 UnicodeString test2("this is a test");
279 if (test1 != test2 || test
467 UnicodeString test2; local
1487 test3.findAndReplace(UnicodeString((UChar)0x61), test2); local
[all...]
/external/chromium_org/third_party/libevent/test/
H A Dregress.c1027 const char* test2 = "1234567890\r"; local
1037 evbuffer_add(buf, (u_char*)test2, strlen(test2));
1051 evbuffer_drain(buf, strlen(test2));
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DMiniSimplify_Test.cpp21 struct curve test2[] = { variable in typeref:struct:curve
29 test2,
H A DQuadraticIntersection_Test.cpp340 static void intersectionFinder(int test1, int test2) { argument
342 const Quadratic& quad2 = testSet[test2];
/external/chromium_org/third_party/skia/tests/
H A DPathOpsQuadIntersectionTest.cpp317 static void coincidentTestOne(skiatest::Reporter* reporter, int test1, int test2) { argument
320 const SkDQuad& quad2 = coincidentTestSet[test2];
410 static void intersectionFinder(int test1, int test2) { argument
412 const SkDQuad& quad2 = testSet[test2];
H A DWriter32Test.cpp114 static void test2(skiatest::Reporter* reporter, SkWriter32* writer) { function
229 test2(reporter, &writer);
255 test2(reporter, &writer);
268 test2(reporter, &writer);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
H A Dlevelop.asm2 mov word [0x0010 + (test2 - test1)], 0x0000
3 mov word [0x0010 + test2 - test1], 0x0000
4 test2: label
/external/chromium_org/v8/test/mjsunit/
H A Dcompare-objects.js83 var obj2 = {test2: 3};
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dosr-alignment.js70 function test2() { function
85 test2();
H A Dsimple-bailouts.js49 Test.prototype.test2 = function() {
108 t.test2();

Completed in 602 milliseconds

1234567891011>>