/external/chromium_org/third_party/sqlite/src/test/ |
select1.test | 22 set v [catch {execsql {SELECT * FROM test1}} msg] 24 } {1 {no such table: test1}} 27 execsql {CREATE TABLE test1(f1 int, f2 int)} 30 set v [catch {execsql {SELECT * FROM test1, test2}} msg] 34 set v [catch {execsql {SELECT * FROM test2, test1}} msg] 38 execsql {INSERT INTO test1(f1,f2) VALUES(11,22)} 44 execsql {SELECT f1 FROM test1} 47 execsql {SELECT f2 FROM test1} 50 execsql {SELECT f2, f1 FROM test1} 53 execsql {SELECT f1, f2 FROM test1} [all...] |
update.test | 22 set v [catch {execsql {UPDATE test1 SET f2=5 WHERE f1<1}} msg] 24 } {1 {no such table: test1}} 37 execsql {CREATE TABLE test1(f1 int,f2 int)} 39 set sql "INSERT INTO test1 VALUES($i,[expr {1<<$i}])" 42 execsql {SELECT * FROM test1 ORDER BY f1} 48 set v [catch {execsql {UPDATE test1 SET f1=f3*2 WHERE f2==32}} msg] 52 set v [catch {execsql {UPDATE test1 SET f1=test2.f1*2 WHERE f2==32}} msg] 56 set v [catch {execsql {UPDATE test1 SET f3=f1*2 WHERE f2==32}} msg] 63 execsql {UPDATE test1 SET f2=f2*3} 71 db eval {SELECT count(*) FROM test1} [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string_op+/ |
pointer_string.pass.cpp | 36 test1(const typename S::value_type* lhs, S&& rhs, const S& x) function 66 test1("", S(""), S("")); 67 test1("", S("12345"), S("12345")); 68 test1("", S("1234567890"), S("1234567890")); 69 test1("", S("12345678901234567890"), S("12345678901234567890")); 70 test1("abcde", S(""), S("abcde")); 71 test1("abcde", S("12345"), S("abcde12345")); 72 test1("abcde", S("1234567890"), S("abcde1234567890")); 73 test1("abcde", S("12345678901234567890"), S("abcde12345678901234567890")); 74 test1("abcdefghij", S(""), S("abcdefghij")) [all...] |
string_pointer.pass.cpp | 36 test1(S&& lhs, const typename S::value_type* rhs, const S& x) function 66 test1(S(""), "", S("")); 67 test1(S(""), "12345", S("12345")); 68 test1(S(""), "1234567890", S("1234567890")); 69 test1(S(""), "12345678901234567890", S("12345678901234567890")); 70 test1(S("abcde"), "", S("abcde")); 71 test1(S("abcde"), "12345", S("abcde12345")); 72 test1(S("abcde"), "1234567890", S("abcde1234567890")); 73 test1(S("abcde"), "12345678901234567890", S("abcde12345678901234567890")); 74 test1(S("abcdefghij"), "", S("abcdefghij")) [all...] |
/external/clang/test/CodeGen/ |
attr-coldhot.c | 3 int test1() __attribute__((__cold__)) { function 7 // CHECK: @test1{{.*}}[[ATTR:#[0-9]+]]
|
/external/clang/test/Driver/ |
linker-opts.c | 1 // RUN: env LIBRARY_PATH=%T/test1 %clang -x c %s -### 2>&1 | FileCheck %s 2 // CHECK: "-L{{.*}}/test1"
|
/external/llvm/test/CodeGen/PowerPC/ |
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/llvm/test/CodeGen/Thumb/ |
ispositive.ll | 3 define i32 @test1(i32 %X) { 5 ; CHECK-LABEL: test1:
|
/external/llvm/test/CodeGen/X86/ |
sub.ll | 3 define i32 @test1(i32 %x) { 7 ; CHECK-LABEL: test1:
|
/external/llvm/test/MC/AsmParser/ |
directive_org.s | 8 # CHECK: TEST1: 10 TEST1:
|
directive_set.s | 8 # CHECK: TEST1: 10 TEST1:
|
directive_space.s | 8 # CHECK: TEST1: 10 TEST1:
|
macros-darwin.s | 3 .macro test1 8 test1 1, 2 3 label
|
/external/llvm/test/Transforms/ConstProp/ |
bitcast.ll | 4 define <1 x i64> @test1() { 7 ; CHECK-LABEL: @test1(
|
/external/llvm/test/Transforms/SCCP/ |
switch.ll | 6 define void @test1() { 7 ; CHECK-LABEL: define void @test1(
|
/ndk/tests/build/mips-fp4/jni/ |
mips-fp4-test1-2.c | 1 double test1 (double a, double b, double c) function 13 test1(a, b, c);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.move/ |
move.pass.cpp | 45 test1() function 99 test1<input_iterator<std::unique_ptr<int>*>, output_iterator<std::unique_ptr<int>*> >(); 100 test1<input_iterator<std::unique_ptr<int>*>, input_iterator<std::unique_ptr<int>*> >(); 101 test1<input_iterator<std::unique_ptr<int>*>, forward_iterator<std::unique_ptr<int>*> >(); 102 test1<input_iterator<std::unique_ptr<int>*>, bidirectional_iterator<std::unique_ptr<int>*> >(); 103 test1<input_iterator<std::unique_ptr<int>*>, random_access_iterator<std::unique_ptr<int>*> >(); 104 test1<input_iterator<std::unique_ptr<int>*>, std::unique_ptr<int>*>(); 106 test1<forward_iterator<std::unique_ptr<int>*>, output_iterator<std::unique_ptr<int>*> >(); 107 test1<forward_iterator<std::unique_ptr<int>*>, input_iterator<std::unique_ptr<int>*> >(); 108 test1<forward_iterator<std::unique_ptr<int>*>, forward_iterator<std::unique_ptr<int>*> >() [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.lcong/ |
assign.pass.cpp | 22 test1() function 37 test1<T, 0, 0, 0>(); 38 test1<T, 0, 1, 2>(); 39 test1<T, 1, 1, 2>(); 41 test1<T, 0, 0, M>(); 42 test1<T, 0, M-2, M>(); 43 test1<T, 0, M-1, M>(); 44 test1<T, M-2, 0, M>(); 45 test1<T, M-2, M-2, M>(); 46 test1<T, M-2, M-1, M>() [all...] |
copy.pass.cpp | 22 test1() function 37 test1<T, 0, 0, 0>(); 38 test1<T, 0, 1, 2>(); 39 test1<T, 1, 1, 2>(); 41 test1<T, 0, 0, M>(); 42 test1<T, 0, M-2, M>(); 43 test1<T, 0, M-1, M>(); 44 test1<T, M-2, 0, M>(); 45 test1<T, M-2, M-2, M>(); 46 test1<T, M-2, M-1, M>() [all...] |
default.pass.cpp | 22 test1() function 36 test1<T, 0, 0, 0>(); 37 test1<T, 0, 1, 2>(); 38 test1<T, 1, 1, 2>(); 40 test1<T, 0, 0, M>(); 41 test1<T, 0, M-2, M>(); 42 test1<T, 0, M-1, M>(); 43 test1<T, M-2, 0, M>(); 44 test1<T, M-2, M-2, M>(); 45 test1<T, M-2, M-1, M>() [all...] |
/external/clang/test/CodeGenCXX/ |
vtable-layout-extreme.cpp | 5 namespace Test1 { 78 // CHECK: Vtable for 'Test1::C9' (87 entries). 88 // CHECK-NEXT: 9 | Test1::C9 RTTI 89 // CHECK-NEXT: -- (Test1::C2, 0) vtable address -- 90 // CHECK-NEXT: -- (Test1::C9, 0) vtable address -- 91 // CHECK-NEXT: 10 | void Test1::C9::f() 96 // CHECK-NEXT: 15 | Test1::C9 RTTI 97 // CHECK-NEXT: -- (Test1::C2, 16) vtable address -- 98 // CHECK-NEXT: -- (Test1::C4, 16) vtable address -- 104 // CHECK-NEXT: 21 | Test1::C9 RTT [all...] |
/external/clang/test/SemaCXX/ |
cxx0x-return-init-list.cpp | 11 T test1(U u) { function 15 template int test1(char); 16 template long test1(int);
|
/external/clang/test/SemaObjC/ |
debugger-cast-result-to-id.m | 4 extern __unknown_anytype test1(); 8 (void)(id)[[test1() unknownMethod] otherUnknownMethod]; 10 id y = test1();
|
method-conflict-1.m | 46 @interface Test1 {} 47 - (void) test1:(A*) object; // broken-note {{previous definition is here}} 51 @implementation Test1 52 - (void) test1:(B*) object {} // broken-warning {{conflicting parameter types in implementation of 'test1:': 'A *' vs 'B *'}} 58 - (void) test1:(id) object; // broken-note {{previous definition is here}} 62 - (void) test1:(A*) object {} // broken-warning {{conflicting parameter types in implementation of 'test1:': 'id' vs 'A *'}} 67 - (A*) test1; 72 - (B*) test1 { return 0; [all...] |
method-conflict-2.m | 7 @interface Test1 {} 8 - (void) test1:(A*) object; // expected-note {{previous definition is here}} 12 @implementation Test1 13 - (void) test1:(B*) object {} // expected-warning {{conflicting parameter types in implementation of 'test1:': 'A *' vs 'B *'}} 18 - (void) test1:(id) object; // expected-note {{previous definition is here}} 23 - (void) test1:(A*) object {} // expected-warning {{conflicting parameter types in implementation of 'test1:': 'id' vs 'A *'}} 28 - (A*) test1; 33 - (B*) test1 { return 0; [all...] |