/external/llvm/test/CodeGen/X86/ |
pmulld.ll | 4 define <4 x i32> @test1(<4 x i32> %A, <4 x i32> %B) nounwind { 5 ; CHECK-LABEL: test1: 8 ; WIN64-LABEL: test1:
|
tailcall-disable.ll | 12 define i32 @test1() nounwind { 18 ; CALL-LABEL: test1: 23 ; JMP-LABEL: test1:
|
memset-sse-stack-realignment.ll | 10 define void @test1(i32 %t) nounwind { 17 ; NOSSE-LABEL: test1: 21 ; SSE1-LABEL: test1: 26 ; SSE2-LABEL: test1: 31 ; AVX1-LABEL: test1: 36 ; AVX2-LABEL: test1:
|
add-of-carry.ll | 4 define i32 @test1(i32 %sum, i32 %x) nounwind readnone ssp { 6 ; CHECK-LABEL: test1: 17 ; Instcombine transforms test1 into test2:
|
atom-lea-sp.ll | 7 define void @test1() nounwind { 8 ; ATOM-LABEL: test1: 14 ; CHECK-LABEL: test1:
|
/external/llvm/test/Transforms/DeadArgElim/ |
keepalive.ll | 10 ; CHECK: define internal zeroext i32 @test1() #0 11 define internal zeroext i32 @test1(i32 %DEADARG1) nounwind { 25 %B = call i32 @test1(i32 1)
|
/ndk/sources/cxx-stl/gabi++/tests/ |
catch_member_pointer_nullptr.cpp | 23 void test1() function 57 void test1() function 69 test1();
|
catch_pointer_nullptr.cpp | 14 void test1() function 50 void test1() function 62 test1();
|
/external/chromium_org/third_party/sqlite/src/test/ |
insert.test | 22 set v [catch {execsql {INSERT INTO test1 VALUES(1,2,3)}} msg] 24 } {1 {no such table: test1}} 36 execsql {CREATE TABLE test1(one int, two int, three int)} 37 set v [catch {execsql {INSERT INTO test1 VALUES(1,2)}} msg] 39 } {1 {table test1 has 3 columns but 2 values were supplied}} 41 set v [catch {execsql {INSERT INTO test1 VALUES(1,2,3,4)}} msg] 43 } {1 {table test1 has 3 columns but 4 values were supplied}} 45 set v [catch {execsql {INSERT INTO test1(one,two) VALUES(1,2,3,4)}} msg] 49 set v [catch {execsql {INSERT INTO test1(one,two) VALUES(1)}} msg] 56 set v [catch {execsql {INSERT INTO test1(one,four) VALUES(1,2)}} msg [all...] |
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
AddressDetectionTest.java | 30 assertTrue(isExpectedGeoIntent(scrollAndTapExpectingIntent("test1"), 43 assertTrue(isExpectedGeoIntent(scrollAndTapExpectingIntent("test1"), 62 assertTrue(isExpectedGeoIntent(scrollAndTapExpectingIntent("test1"), 81 assertTrue(isExpectedGeoIntent(scrollAndTapExpectingIntent("test1"), 100 assertTrue(isExpectedGeoIntent(scrollAndTapExpectingIntent("test1"),
|
/external/chromium_org/third_party/WebKit/Tools/qunit/test/ |
logs.js | 56 test("test1", 13, function() { 78 name: "test1" 95 name: "test1", 113 test("test1", 9, function() { 121 name: "test1"
|
/external/chromium_org/v8/test/mjsunit/ |
math-floor-negative.js | 30 function test1() { function 47 test1(); 48 test1(); 49 %OptimizeFunctionOnNextCall(test1); 57 assertEquals(-10000000000.1, test1());
|
/external/clang/test/ARCMT/ |
GC-no-finalize-removal.m | 11 void test1(CFTypeRef *cft) { 21 test1(0); 26 test1(0); 40 test1(0); 76 -(void)test1:(CFTypeRef *)cft {
|
GC.m | 11 void test1(CFTypeRef *cft) { 21 test1(0); 26 test1(0); 40 test1(0); 76 -(void)test1:(CFTypeRef *)cft {
|
/external/llvm/test/MC/ARM/ |
eh-directive-section-multiple-func.s | 11 @ In this example, func1 and func2 should be defined in .TEST1 section. 12 @ It is incorrect if the func2 is in .text, .ARM.extab.TEST1, or 13 @ .ARM.exidx.TEST1 sections. 17 .section .TEST1 52 @ Check the .TEST1 section. There should be two "bx lr" instructions. 55 @ CHECK: Name: .TEST1 64 @ Check the .ARM.extab.TEST1 section. 67 @ CHECK: Name: .ARM.extab.TEST1 79 @ Check the .ARM.exidx.TEST1 section. 82 @ CHECK: Name: .ARM.exidx.TEST1 [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/ |
construct_default.pass.cpp | 34 test1(const typename C::allocator_type& a) function 47 test1<std::vector<int, test_allocator<int> > >(test_allocator<int>(3)); 48 test1<std::vector<NotConstructible, test_allocator<NotConstructible> > > 59 test1<std::vector<int, min_allocator<int> > >(min_allocator<int>{}); 60 test1<std::vector<NotConstructible, min_allocator<NotConstructible> > >
|
/external/llvm/test/CodeGen/ARM/ |
fnegs.ll | 8 define float @test1(float* %a) { 17 ; VFP2-LABEL: test1: 20 ; NFP1-LABEL: test1: 23 ; NFP0-LABEL: test1: 26 ; CORTEXA8-LABEL: test1: 29 ; CORTEXA8U-LABEL: test1: 32 ; CORTEXA9-LABEL: test1:
|
/external/clang/test/SemaCXX/ |
addr-of-overloaded-function.cpp | 178 namespace test1 { namespace 223 X = &Qualifiers::C; // expected-error {{assigning to 'void (test1::Qualifiers::*)()' from incompatible type 'void (test1::Qualifiers::*)() const': different qualifiers (none vs const)}} 224 X = &Qualifiers::V; // expected-error{{assigning to 'void (test1::Qualifiers::*)()' from incompatible type 'void (test1::Qualifiers::*)() volatile': different qualifiers (none vs volatile)}} 225 X = &Qualifiers::R; // expected-error{{assigning to 'void (test1::Qualifiers::*)()' from incompatible type 'void (test1::Qualifiers::*)() restrict': different qualifiers (none vs restrict)}} 226 X = &Qualifiers::CV; // expected-error{{assigning to 'void (test1::Qualifiers::*)()' from incompatible type 'void (test1::Qualifiers::*)() const volatile': different qualifiers (none vs const and volatile)}} 227 X = &Qualifiers::CR; // expected-error{{assigning to 'void (test1::Qualifiers::*)()' from incompatible type 'void (test1::Qualifiers::*)() const restrict': differen (…) [all...] |
/external/chromium_org/net/base/ |
expiring_cache_unittest.cc | 47 cache.Put("entry1", "test1", now, now + kTTL); 48 EXPECT_THAT(cache.Get("entry1", now), Pointee(StrEq("test1"))); 64 EXPECT_THAT(cache.Get("entry1", now), Pointee(StrEq("test1"))); 77 cache.Put("entry1", "test1", now, now + kTTL); 81 EXPECT_THAT(cache.Get("entry1", now), Pointee(StrEq("test1"))); 166 cache.Put("test1", "test1", now, now + kTTL); 173 EXPECT_THAT(cache.Get("test1", now), Pointee(StrEq("test1"))); 182 EXPECT_THAT(cache.Get("test1", now), Pointee(StrEq("test1"))) [all...] |
/external/chromium_org/v8/test/webkit/ |
dictionary-no-cache.js | 34 var test1 = new Test(); 36 for (var k in test1); 51 var test1 = new Test(); 53 for (var k in test1); 72 var test1 = new Test(); 73 update(test1);
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p11.cpp | 19 namespace test1 { namespace 32 void test1() { function in namespace:test2 47 class Test1 { 64 template <typename> class Test1 { 82 template <typename T> class Test1 { 90 template class Test1<int>;
|
p8.cpp | 23 void test1() { function in namespace:test0 37 namespace test1 { namespace 54 void test1() { function in namespace:test1
|
/external/clang/test/CodeGen/ |
visibility.c | 48 // CHECK-DEFAULT: define void @test1( 49 // CHECK-PROTECTED: define void @test1( 50 // CHECK-HIDDEN: define void @test1( 51 struct Test1 { int field; }; 52 void __attribute__((visibility("default"))) test1(struct Test1 *v) { } function
|
/external/llvm/test/Transforms/ConstProp/ |
insertvalue.ll | 5 define %struct @test1() { 8 ; CHECK-LABEL: @test1( 26 define %struct @zeroinitializer-test1() { 29 ; CHECK: @zeroinitializer-test1 47 define %struct @undef-test1() { 50 ; CHECK: @undef-test1
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2055.js | 31 function test1(depth) { function 35 return [ 0, test1(depth) ]; 38 assertEquals([0,[0,[]]], test1(2));
|