Searched refs:test1 (Results 151 - 175 of 731) sorted by relevance

1234567891011>>

/external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
H A Dnotify_all.pass.cpp27 int test1 = 0; variable
33 assert(test1 == 0);
34 while (test1 == 0)
36 assert(test1 == 1);
37 test1 = 2;
57 test1 = 1;
67 assert(test1 == 2);
H A Dwait_until.pass.cpp47 int test1 = 0; variable
56 test1 = 1;
81 assert(test1 == 0);
82 while (test1 == 0)
84 assert(test1 != 0);
90 test1 = 0;
95 assert(test1 == 0);
96 while (test1 == 0)
98 assert(test1 != 0);
H A Dwait_until_pred.pass.cpp57 int test1 = 0; variable
66 test1 = 1;
92 assert(test1 == 0);
93 while (test1 == 0)
95 assert(test1 != 0);
101 test1 = 0;
106 assert(test1 == 0);
107 while (test1 == 0)
109 assert(test1 != 0);
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/
H A Dnotify_all.pass.cpp31 int test1 = 0; variable
37 assert(test1 == 0);
38 while (test1 == 0)
40 assert(test1 == 1);
41 test1 = 2;
61 test1 = 1;
71 assert(test1 == 2);
H A Dwait_until.pass.cpp50 int test1 = 0; variable
59 test1 = 1;
84 assert(test1 == 0);
85 while (test1 == 0)
87 assert(test1 != 0);
93 test1 = 0;
98 assert(test1 == 0);
99 while (test1 == 0)
101 assert(test1 != 0);
H A Dwait_until_pred.pass.cpp61 int test1 = 0; variable
70 test1 = 1;
96 assert(test1 == 0);
97 while (test1 == 0)
99 assert(test1 != 0);
105 test1 = 0;
110 assert(test1 == 0);
111 while (test1 == 0)
113 assert(test1 != 0);
/external/libcxxabi/test/
H A Dcatch_const_pointer_nullptr.pass.cpp16 void test1() function
116 void test1() {} function
127 test1();
/external/v8/test/webkit/
H A Dduplicate-param-gc-crash.js44 function test1(a, b, b, b, b, b, b) { function
50 var test1Closure = test1(["success"]);
52 var extra = test1("success");
/external/v8/test/webkit/fast/js/
H A Dstack-overflow-arrity-catch.js35 function test1() function
69 test1();
81 test1();
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.swap/
H A Dswap_ranges.pass.cpp45 test1() function
136 test1<forward_iterator<std::unique_ptr<int>*>, forward_iterator<std::unique_ptr<int>*> >();
137 test1<forward_iterator<std::unique_ptr<int>*>, bidirectional_iterator<std::unique_ptr<int>*> >();
138 test1<forward_iterator<std::unique_ptr<int>*>, random_access_iterator<std::unique_ptr<int>*> >();
139 test1<forward_iterator<std::unique_ptr<int>*>, std::unique_ptr<int>*>();
141 test1<bidirectional_iterator<std::unique_ptr<int>*>, forward_iterator<std::unique_ptr<int>*> >();
142 test1<bidirectional_iterator<std::unique_ptr<int>*>, bidirectional_iterator<std::unique_ptr<int>*> >();
143 test1<bidirectional_iterator<std::unique_ptr<int>*>, random_access_iterator<std::unique_ptr<int>*> >();
144 test1<bidirectional_iterator<std::unique_ptr<int>*>, std::unique_ptr<int>*>();
146 test1<random_access_iterato
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dustrtest.cpp73 UnicodeString test1("Now is the time for all men to come swiftly to the aid of the party.\n");
77 c=(UnicodeString *)test1.clone();
78 test1.insert(24, "good ");
80 if (test1 != expectedValue)
81 errln("insert() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\"");
89 test1.remove(41, 8);
91 if (test1 != expectedValue)
92 errln("remove() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\"");
94 test1.replace(58, 6, "ir country");
96 if (test1 !
[all...]
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/
H A Dstring_string.pass.cpp49 test1(S&& lhs, const S& rhs, const S& x) function
93 test1(S(""), S(""), S(""));
94 test1(S(""), S("12345"), S("12345"));
95 test1(S(""), S("1234567890"), S("1234567890"));
96 test1(S(""), S("12345678901234567890"), S("12345678901234567890"));
97 test1(S("abcde"), S(""), S("abcde"));
98 test1(S("abcde"), S("12345"), S("abcde12345"));
99 test1(S("abcde"), S("1234567890"), S("abcde1234567890"));
100 test1(S("abcde"), S("12345678901234567890"), S("abcde12345678901234567890"));
101 test1(
[all...]
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.unnamed/
H A Dp1.cpp14 void test1() { i++; } function in namespace:A
/external/clang/test/CodeGen/
H A D2002-05-23-TypeNameCollision.c13 enum bar { test1, test2 }; enumerator in enum:bar
H A Dblock-byref-aggr.c36 void test1() { function
40 // CHECK-LABEL: define void @test1()
H A Dbranch-target-layout.c16 // CHECK: @test1
21 void test1(int a) { function
H A Dexceptions.c5 void test1() { function
8 // CHECK-LABEL: define void @test1()
9 // CHECK-ARM-LABEL: define arm_aapcscc void @test1()
H A Drestrict.c9 // CHECK: define void @test1(i32* noalias %{{.*}}, i32 %{{.*}})
10 void test1(int * restrict x, int y) { function
H A Dstack-protector.c2 // NOSSP: define void @test1(i8* %msg) #0 {
4 // WITHSSP: define void @test1(i8* %msg) #0 {
6 // SSPSTRONG: define void @test1(i8* %msg) #0 {
8 // SSPREQ: define void @test1(i8* %msg) #0 {
16 void test1(const char *msg) { function
/external/clang/test/CodeGenCXX/
H A Dinstrument-functions.cpp4 int test1(int x) { function
H A Dmangle-nullptr-arg.cpp6 void test1(IP<nullptr>) {} function
H A Dmicrosoft-abi-structors-alias.cpp3 namespace test1 { namespace
8 // CHECK-DAG: define weak_odr x86_thiscallcc void @"\01??1?$A@D@test1@@AAE@XZ"
H A Dmove-assignment.cpp16 void test1() { function
/external/clang/test/Parser/
H A Dstatements.c3 void test1() { function
/external/clang/test/Sema/
H A Dconversion-64-32.c12 int4 test1(long2 a) { function

Completed in 499 milliseconds

1234567891011>>