/external/icu4c/test/intltest/ |
D | ustrtest.cpp | 75 UnicodeString test1("Now is the time for all men to come swiftly to the aid of the party.\n"); in TestBasicManipulation() local 79 c=(UnicodeString *)test1.clone(); in TestBasicManipulation() 80 test1.insert(24, "good "); in TestBasicManipulation() 82 if (test1 != expectedValue) in TestBasicManipulation() 83 errln("insert() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\""); in TestBasicManipulation() 91 test1.remove(41, 8); in TestBasicManipulation() 93 if (test1 != expectedValue) in TestBasicManipulation() 94 errln("remove() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\""); in TestBasicManipulation() 96 test1.replace(58, 6, "ir country"); in TestBasicManipulation() 98 if (test1 != expectedValue) in TestBasicManipulation() [all …]
|
D | citrtest.cpp | 200 CharacterIterator* test1 = new StringCharacterIterator(testText); in TestConstructionAndEquality() local 208 CharacterIterator* test5 = test1->clone(); in TestConstructionAndEquality() 217 if (*test1 == *test2 || *test1 == *test3 || *test1 == *test4) in TestConstructionAndEquality() 219 if (*test1 != *test5) in TestConstructionAndEquality() 222 if (test1->hashCode() == test2->hashCode() || test1->hashCode() == test3->hashCode() in TestConstructionAndEquality() 223 || test1->hashCode() == test4->hashCode()) in TestConstructionAndEquality() 226 if (test1->hashCode() != test5->hashCode()) in TestConstructionAndEquality() 229 if(test1->getLength() != testText.length()){ in TestConstructionAndEquality() 232 test1->getText(result1); in TestConstructionAndEquality() 239 test1->setIndex(5); in TestConstructionAndEquality() [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 …]
|
/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 | 47 - (void) test1:(A*) object; // broken-note {{previous definition is here}} 52 - (void) test1:(B*) object {} // broken-warning {{conflicting parameter types in implementation of … 58 - (void) test1:(id) object; // broken-note {{previous definition is here}} 62 - (void) test1:(A*) object {} // broken-warning {{conflicting parameter types in implementation of … 67 - (A*) test1; method 72 - (B*) test1 { return 0; } method 78 - (id) test1; method 82 - (A*) test1 { return 0; } // id -> A* is rdar://problem/8596987 method
|
D | unknown-anytype.m | 4 extern __unknown_anytype test1(); function 18 float *fp = [test1() getFloatPtr]; 19 double *dp = [test1() getSomePtr]; // okay: picks first method found 22 …[[test1() unknownMethod] otherUnknownMethod]; // expected-error{{no known method '-otherUnknownMet… 23 (void)(id)[[test1() unknownMethod] otherUnknownMethod]; 27 …if ([[test1() unknownMethod] otherUnknownMethod]) { // expected-error{{no known method '-otherUnkn…
|
/external/llvm/test/CodeGen/PowerPC/ |
D | ppc64-linux-func-size.ll | 4 ; CHECK-NEXT: test1: 6 ; CHECK-NEXT: .quad .L.test1 10 ; CHECK-NEXT: .L.test1: 12 define i32 @test1(i32 %a) nounwind { 18 ; .size test1, .Ltmp0-test1 22 ; CHECK: .size test1, .Ltmp0-.L.test1
|
/external/valgrind/main/gdbserver_tests/ |
D | mcsignopass.stdoutB.exp | 9 0x........ in test1 () at faultstatus.c:105 13 0x........ in test1 () at faultstatus.c:105 17 0x........ in test1 () at faultstatus.c:105 21 0x........ in test1 () at faultstatus.c:105 25 0x........ in test1 () at faultstatus.c:105 29 0x........ in test1 () at faultstatus.c:105 33 0x........ in test1 () at faultstatus.c:105 37 0x........ in test1 () at faultstatus.c:105 41 0x........ in test1 () at faultstatus.c:105 45 0x........ in test1 () at faultstatus.c:105 [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | constant-expr-datalayout.ll | 6 %test1.struct = type { i32, i32 } 7 @test1.aligned_glbl = global %test1.struct zeroinitializer, align 4 8 define void @test1(i64 *%ptr) { 9 …store i64 and (i64 ptrtoint (i32* getelementptr (%test1.struct* @test1.aligned_glbl, i32 0, i32 1)…
|
D | struct-assign-tbaa.ll | 10 %struct.test1 = type { float } 16 define void @test1(%struct.test1* nocapture %a, %struct.test1* nocapture %b) { 18 %0 = bitcast %struct.test1* %a to i8* 19 %1 = bitcast %struct.test1* %b to i8*
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
D | p13.cpp | 19 Opaque0 test1(const int*); 28 using Base::test1; 29 Opaque1 test1(int*); 43 void test1() { in test1() function 44 Opaque1 a = Derived().test1((int*) 0); in test1() 45 Opaque0 b = Derived().test1((const int*) 0); in test1()
|
/external/llvm/unittests/Support/ |
D | ManagedStatic.cpp | 23 namespace test1 { namespace 46 void *p1 = test1::allocate_stack(a1); in TEST() 47 void *p2 = test1::allocate_stack(a2); in TEST() 51 pthread_create(&t1, &a1, test1::helper, NULL); in TEST() 52 pthread_create(&t2, &a2, test1::helper, NULL); in TEST()
|
/external/clang/test/SemaCXX/ |
D | unknown-anytype.cpp | 5 extern __unknown_anytype test1(); 9 namespace test1 { namespace 41 extern __unknown_anytype test1(...); 45 …int x = (int) test1; // expected-error {{function 'test1' with unknown type must be given a functi… in test()
|
D | cxx0x-return-init-list.cpp | 11 T test1(U u) { in test1() function 15 template int test1(char); 16 template long test1(int);
|
/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
|
/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/CodeGenCXX/ |
D | varargs.cpp | 11 int test1(...) { in test1() function 17 test1(0); in test() 21 namespace test1 { namespace
|
/external/clang/test/ARCMT/ |
D | GC-no-finalize-removal.m.result | 11 void test1(CFTypeRef *cft) { 21 test1(0); 27 test1(0); 43 test1(0); 48 test1(0); 84 -(void)test1:(CFTypeRef *)cft {
|
D | GC-no-arc-runtime.m | 11 void test1(CFTypeRef *cft) { function 21 test1(0); 26 test1(0); 40 test1(0); 69 -(void)test1:(CFTypeRef *)cft {
|