/external/icu4c/test/intltest/ |
D | ustrtest.cpp | 73 UnicodeString test1("Now is the time for all men to come swiftly to the aid of the party.\n"); in TestBasicManipulation() local 77 c=(UnicodeString *)test1.clone(); in TestBasicManipulation() 78 test1.insert(24, "good "); in TestBasicManipulation() 80 if (test1 != expectedValue) in TestBasicManipulation() 81 errln("insert() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\""); in TestBasicManipulation() 89 test1.remove(41, 8); in TestBasicManipulation() 91 if (test1 != expectedValue) in TestBasicManipulation() 92 errln("remove() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\""); in TestBasicManipulation() 94 test1.replace(58, 6, "ir country"); in TestBasicManipulation() 96 if (test1 != expectedValue) in TestBasicManipulation() [all …]
|
D | citrtest.cpp | 199 CharacterIterator* test1 = new StringCharacterIterator(testText); in TestConstructionAndEquality() local 207 CharacterIterator* test5 = test1->clone(); in TestConstructionAndEquality() 216 if (*test1 == *test2 || *test1 == *test3 || *test1 == *test4) in TestConstructionAndEquality() 218 if (*test1 != *test5) in TestConstructionAndEquality() 221 if (test1->hashCode() == test2->hashCode() || test1->hashCode() == test3->hashCode() in TestConstructionAndEquality() 222 || test1->hashCode() == test4->hashCode()) in TestConstructionAndEquality() 225 if (test1->hashCode() != test5->hashCode()) in TestConstructionAndEquality() 228 if(test1->getLength() != testText.length()){ in TestConstructionAndEquality() 231 test1->getText(result1); in TestConstructionAndEquality() 238 test1->setIndex(5); in TestConstructionAndEquality() [all …]
|
D | utxttest.cpp | 851 UText test1 = UTEXT_INITIALIZER; in ComparisonTest() local 864 utext_openUnicodeString(&test1, &test1Str, &status); in ComparisonTest() 875 UTEXT_SETNATIVEINDEX(&test1, 0); in ComparisonTest() 877 if (utext_compare(&test1, -1, &test2, -1) != 0) errln("utext_compare() failed, simple setup"); in ComparisonTest() 878 UTEXT_SETNATIVEINDEX(&test1, 0); in ComparisonTest() 880 if (utext_compare(&test1, -1, &test3, -1) >= 0) errln("utext_compare() failed, simple setup"); in ComparisonTest() 881 UTEXT_SETNATIVEINDEX(&test1, 0); in ComparisonTest() 883 if (utext_compare(&test1, -1, &test4, -1) <= 0) errln("utext_compare() failed, simple setup"); in ComparisonTest() 886 UTEXT_SETNATIVEINDEX(&test1, 0); in ComparisonTest() 888 …if (utext_compareNativeLimit(&test1, -1, &test2, -1) != 0) errln("utext_compareNativeLimit() faile… in ComparisonTest() [all …]
|
D | itercoll.cpp | 26 : test1("What subset of all possible test cases?", ""), in CollationIteratorTest() 87 CollationElementIterator *iter = en_us->createCollationElementIterator(test1); in TestPrevious() 175 CollationElementIterator *iter = en_us->createCollationElementIterator(test1); in TestOffset() 183 iter->setOffset(test1.length(), status); in TestOffset() 195 if (offset != test1.length()) in TestOffset() 200 errln(msg1 + offset + msg2 + test1.length()); in TestOffset() 204 CollationElementIterator *pristine = en_us->createCollationElementIterator(test1); in TestOffset() 229 CollationElementIterator *iter1 = en_us->createCollationElementIterator(test1); in TestSetText() 250 iter2->setText(test1, status); in TestSetText() 262 CharacterIterator* chariter = new StringCharacterIterator(test1); in TestSetText() [all …]
|
D | regcoll.cpp | 47 …const UnicodeString test1 = "XFILE What subset of all possible test cases has the highest probabil… in Test4048446() local 49 CollationElementIterator *i1 = en_us->createCollationElementIterator(test1); in Test4048446() 50 CollationElementIterator *i2 = en_us->createCollationElementIterator(test1); in Test4048446() 424 const UnicodeString test1(chars1); in Test4066189() local 433 CollationElementIterator *i1 = c1->createCollationElementIterator(test1); in Test4066189() 773 static const UChar test1[][CollationRegressionTest::MAX_TOKEN_LEN] = in Test4114076() local 779 compareArray(*c, test1, ARRAY_LENGTH(test1)); in Test4114076() 853 static const UChar test1[][CollationRegressionTest::MAX_TOKEN_LEN] = in Test4132736() local 859 compareArray(*c, test1, ARRAY_LENGTH(test1)); in Test4132736() 870 static const UChar test1[][CollationRegressionTest::MAX_TOKEN_LEN] = in Test4133509() local [all …]
|
/external/llvm/test/DebugInfo/ |
D | inheritance.ll | 6 %struct.test1 = type { i32 (...)** } 8 …), i32 (...)* bitcast (void (%struct.test1*)* @_ZN5test1D1Ev to i32 (...)*), i32 (...)* bitcast (v… 11 @_ZTS5test1 = weak_odr constant [7 x i8] c"5test1\00" ; <[7 x i8]*> [#uses=2] 17 %tst = alloca %struct.test1 ; <%struct.test1*> [#uses=1] 19 call void @llvm.dbg.declare(metadata !{%struct.test1* %tst}, metadata !0), !dbg !21 20 call void @_ZN5test1C1Ev(%struct.test1* %tst) nounwind, !dbg !22 31 define linkonce_odr void @_ZN5test1C1Ev(%struct.test1* %this) nounwind ssp align 2 { 33 %this_addr = alloca %struct.test1* ; <%struct.test1**> [#uses=2] 35 call void @llvm.dbg.declare(metadata !{%struct.test1** %this_addr}, metadata !24), !dbg !28 36 store %struct.test1* %this, %struct.test1** %this_addr [all …]
|
/external/e2fsprogs/lib/ext2fs/ |
D | tst_byteswap.c | 28 __u16 test1[] = { variable 55 printf("swab16(0x%04x) = 0x%04x\n", test1[i], in main() 56 ext2fs_swab16(test1[i])); in main() 57 if (ext2fs_swab16(test1[i]) != test1[i+1]) { in main() 59 ext2fs_swab16(test1[i]), test1[i+1]); in main() 62 if (ext2fs_swab16(test1[i+1]) != test1[i]) { in main() 64 ext2fs_swab16(test1[i+1]), test1[i]); in main() 68 } while (test1[i] != 0); in main()
|
/external/clang/test/SemaObjC/ |
D | method-conflict-2.m | 7 - (void) test1:(A*) object; // expected-note {{previous definition is here}} 12 - (void) test1:(B*) object {} // expected-warning {{conflicting parameter types in implementation o… 17 - (void) test1:(id) object; // expected-note {{previous definition is here}} 22 - (void) test1:(A*) object {} // expected-warning {{conflicting parameter types in implementation o… 27 - (A*) test1; method 32 - (B*) test1 { return 0; } method 38 - (id) test1; method 42 - (A*) test1 { return 0; } // id -> A* is rdar://problem/8596987 method
|
D | method-conflict-1.m | 46 - (void) test1:(A*) object; // broken-note {{previous definition is here}} 51 - (void) test1:(B*) object {} // broken-warning {{conflicting parameter types in implementation of … 57 - (void) test1:(id) object; // broken-note {{previous definition is here}} 61 - (void) test1:(A*) object {} // broken-warning {{conflicting parameter types in implementation of … 66 - (A*) test1; method 71 - (B*) test1 { return 0; } method 77 - (id) test1; method 81 - (A*) test1 { return 0; } // id -> A* is rdar://problem/8596987 method
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
D | p13.cpp | 18 Opaque0 test1(const int*); 27 using Base::test1; 28 Opaque1 test1(int*); 42 void test1() { in test1() function 43 Opaque1 a = Derived().test1((int*) 0); in test1() 44 Opaque0 b = Derived().test1((const int*) 0); in test1()
|
D | p12.cpp | 26 namespace test1 { namespace 40 void test1() { Opaque<1> _ = foo(Opaque<1>()); } in test1() function 52 void test1() { Opaque<1> _ = foo(Opaque<1>()); } in test1() function 65 void test1() { Opaque<0> _ = foo(Opaque<1>()); } in test1() function 98 void test1(int i) { in test1() function
|
/external/clang/test/CXX/class.access/ |
D | p4.cpp | 36 namespace test1 { namespace 168 Private test1() { return *this; } // expected-error {{'operator Private' is a private member}} in test1() function in test4::Derived1 171 …Private test1(Derived1 &d) { return d; } // expected-error {{'operator Private' is a private membe… in test1() function 178 Private test1() { return *this; } // expected-error {{'operator Private' is a private member}} in test1() function in test4::Derived2 181 …Private test1(Derived2 &d) { return d; } // expected-error {{'operator Private' is a private membe… in test1() function 189 Private test1(Derived3 &d) { return d; } in test1() function 197 Private test1(Derived4 &d) { return d; } in test1() function 208 void test1() { in test1() function 228 void test1(const Test1 &t) { in test1() function 378 int test1(A<int> &a) { in test1() function in test15::A [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | fnegs.ll | 6 define float @test1(float* %a) { 15 ; VFP2: test1: 18 ; NFP1: test1: 21 ; NFP0: test1: 24 ; CORTEXA8: test1: 27 ; CORTEXA9: test1:
|
/external/llvm/test/Transforms/ConstProp/ |
D | extractvalue.ll | 5 define i32 @test1() { 8 ; CHECK: @test1 26 define i32 @zeroinitializer-test1() { 29 ; CHECK: @zeroinitializer-test1 47 define i32 @undef-test1() { 50 ; CHECK: @undef-test1
|
D | insertvalue.ll | 5 define %struct @test1() { 8 ; CHECK: @test1 26 define %struct @zeroinitializer-test1() { 29 ; CHECK: @zeroinitializer-test1 47 define %struct @undef-test1() { 50 ; CHECK: @undef-test1
|
/external/llvm/test/Transforms/ConstantMerge/ |
D | unnamed-addr.ll | 9 @test1.x = internal constant %struct.foobar { i32 1 } 10 @test1.y = constant %struct.foobar { i32 1 } 24 ; CHECK: @test1.x = internal constant %struct.foobar { i32 1 } 25 ; CHECK-NEXT: @test1.y = constant %struct.foobar { i32 1 } 34 call void @zed(%struct.foobar* @test1.x, %struct.foobar* @test1.y)
|
/external/apache-harmony/auth/src/test/resources/ |
D | auth.conf | 14 com.intel.security.auth.module.LoginModule1 required debug1=true test1=false; 19 com.intel.security.auth.module.LoginModule2 required debug1="true" test1="false"; 26 com.intel.security.auth.module.LoginModule4 required debug1=true test1=false; }; 29 { com.intel.security.auth.module.LoginModule5 required debug1=true test1=false; }; 31 Login6 { com.intel.security.auth.module.LoginModule6 required debug1=true test1=false; };
|
/external/v8/test/mjsunit/regress/ |
D | regress-conditional-position.js | 57 function test1() { function 85 test(test1, 58); 89 eval(test1.toString() + "//@ sourceUrl=foo"); 93 test(test1, 2);
|
/external/clang/test/Parser/ |
D | cxx-casting.cpp | 36 namespace test1 { namespace 61 …test1::A LC:B> c; // expected-error {{cannot refer to class template 'A' without a template argume… in test2() 63 …test1::A<:C B> d; // expected-error {{cannot refer to class template 'A' without a template argume… in test2() 67 …test1::A LCC B> e; // expected-error{{found '<::' after a template name which forms the digraph '<… in test2()
|
/external/llvm/test/Transforms/LoopUnroll/ |
D | basic.ll | 6 ; CHECK: @test1 7 ; CHECK: store i8* blockaddress(@test1, %l1), i8** %P 11 define i32 @test1(i8** %P) nounwind ssp { 13 store i8* blockaddress(@test1, %l1), i8** %P
|
/external/clang/test/SemaCXX/ |
D | cxx0x-return-init-list.cpp | 13 T test1(U u) { in test1() function 17 template int test1(char); 18 template long test1(int);
|
/external/icu4c/test/cintltst/ |
D | capitst.c | 585 UChar* test1; in TestCompare() local 595 test1=(UChar*)malloc(sizeof(UChar) * 6); in TestCompare() 597 u_uastrcpy(test1, "Abcda"); in TestCompare() 602 …doAssert( (!ucol_equal(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"… in TestCompare() 603 …doAssert( (ucol_greater(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \… in TestCompare() 604 …doAssert( (ucol_greaterOrEqual(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result shou… in TestCompare() 609 …doAssert( (ucol_equal(col, test1, u_strlen(test1), test2, u_strlen(test2) )), "Result should be \"… in TestCompare() 610 …doAssert( (!ucol_greater(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be … in TestCompare() 611 …doAssert( (ucol_greaterOrEqual(col, test1, u_strlen(test1), test2, u_strlen(test2) )), "Result sho… in TestCompare() 616 …doAssert( (ucol_equal(col, test1, u_strlen(test1), test2, u_strlen(test2))), "Result should be \"A… in TestCompare() [all …]
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/ |
D | regress-192226.js | 63 test1(sin); 70 test1(e); 79 function test1(arg) function
|
/external/clang/test/CodeGen/ |
D | inline.c | 61 int test1(); 62 __inline int test1() { return 4; } in test1() function 67 void test_test1() { test1(); } in test_test1()
|
/external/llvm/test/CodeGen/X86/ |
D | asm-modifier-P.ll | 15 ; void test1() { 20 define void @test1() nounwind { 24 ; CHECK-PIC-64: test1: 29 ; CHECK-STATIC-64: test1: 33 ; CHECK-PIC-32: test1: 37 ; CHECK-STATIC-32: test1:
|