/external/clang/test/CodeGenObjC/ |
builtins.m | 3 void test0(id receiver, SEL sel, const char *str) { 6 // CHECK-LABEL: define void @test0(
|
property-aggregate.m | 13 @interface Test0 17 @implementation Test0 21 // CHECK: define internal i24 @"\01-[Test0 s3]"( 24 // CHECK: define internal void @"\01-[Test0 setS3:]"( 27 // CHECK: define internal i32 @"\01-[Test0 s4]"( 30 // CHECK: define internal void @"\01-[Test0 setS4:]"(
|
arc-unopt.m | 5 @class Test0; 6 Test0 *test0(void) { 7 extern Test0 *test0_helper; 10 // CHECK: [[LD:%.*]] = load [[TEST0:%.*]]** @test0_helper 11 // CHECK-NEXT: [[T0:%.*]] = bitcast [[TEST0]]* [[LD]] to i8* 13 // CHECK-NEXT: [[T2:%.*]] = bitcast i8* [[T1]] to [[TEST0]]* 14 // CHECK-NEXT: ret [[TEST0]]* [[T2]]
|
/external/llvm/test/CodeGen/X86/ |
trap.ll | 3 ; CHECK-LABEL: test0: 5 define i32 @test0() noreturn nounwind {
|
setcc-sentinals.ll | 3 define zeroext i1 @test0(i64 %x) nounwind { 4 ; CHECK-LABEL: test0:
|
/external/llvm/test/MC/AsmParser/ |
directive_align.s | 3 # CHECK: TEST0: 5 TEST0:
|
directive_lsym.s | 8 # CHECK: TEST0: 11 TEST0:
|
directive_zerofill.s | 3 # CHECK: TEST0: 8 TEST0:
|
/external/clang/test/SemaCXX/ |
conditional-expr.cpp | 202 unsigned long test0 = 5; local 203 test0 = test0 ? (long) test0 : test0; // expected-warning {{operand of ? changes signedness: 'long' to 'unsigned long'}} 204 test0 = test0 ? (int) test0 : test0; // expected-warning {{operand of ? changes signedness: 'int' to 'unsigned long'}} 205 test0 = test0 ? (short) test0 : test0; // expected-warning {{operand of ? changes signedness: 'short' to (…) [all...] |
storage-class.cpp | 7 extern "C" struct Test0 { int x; }; // no warning
|
unknown-anytype.cpp | 3 namespace test0 { namespace 4 extern __unknown_anytype test0; 40 extern __unknown_anytype test0(...); 44 void (*fn)(int) = (void(*)(int)) test0;
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p13.cpp | 13 namespace test0 { namespace 18 Opaque0 test0(int*); 25 using Base::test0; 26 Opaque1 test0(const int*); 38 void test0() { function in namespace:test0 39 Opaque0 a = Derived().test0((int*) 0); 40 Opaque1 b = Derived().test0((const int*) 0);
|
/external/libcxx/test/strings/basic.string/string.nonmembers/string_op+/ |
char_string.pass.cpp | 27 test0(typename S::value_type lhs, const S& rhs, const S& x) function 47 test0('a', S(""), S("a")); 48 test0('a', S("12345"), S("a12345")); 49 test0('a', S("1234567890"), S("a1234567890")); 50 test0('a', S("12345678901234567890"), S("a12345678901234567890")); 64 test0('a', S(""), S("a")); 65 test0('a', S("12345"), S("a12345")); 66 test0('a', S("1234567890"), S("a1234567890")); 67 test0('a', S("12345678901234567890"), S("a12345678901234567890"));
|
string_char.pass.cpp | 27 test0(const S& lhs, typename S::value_type rhs, const S& x) function 47 test0(S(""), '1', S("1")); 48 test0(S("abcde"), '1', S("abcde1")); 49 test0(S("abcdefghij"), '1', S("abcdefghij1")); 50 test0(S("abcdefghijklmnopqrst"), '1', S("abcdefghijklmnopqrst1")); 64 test0(S(""), '1', S("1")); 65 test0(S("abcde"), '1', S("abcde1")); 66 test0(S("abcdefghij"), '1', S("abcdefghij1")); 67 test0(S("abcdefghijklmnopqrst"), '1', S("abcdefghijklmnopqrst1"));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string_op+/ |
char_string.pass.cpp | 27 test0(typename S::value_type lhs, const S& rhs, const S& x) function 47 test0('a', S(""), S("a")); 48 test0('a', S("12345"), S("a12345")); 49 test0('a', S("1234567890"), S("a1234567890")); 50 test0('a', S("12345678901234567890"), S("a12345678901234567890")); 64 test0('a', S(""), S("a")); 65 test0('a', S("12345"), S("a12345")); 66 test0('a', S("1234567890"), S("a1234567890")); 67 test0('a', S("12345678901234567890"), S("a12345678901234567890"));
|
string_char.pass.cpp | 27 test0(const S& lhs, typename S::value_type rhs, const S& x) function 47 test0(S(""), '1', S("1")); 48 test0(S("abcde"), '1', S("abcde1")); 49 test0(S("abcdefghij"), '1', S("abcdefghij1")); 50 test0(S("abcdefghijklmnopqrst"), '1', S("abcdefghijklmnopqrst1")); 64 test0(S(""), '1', S("1")); 65 test0(S("abcde"), '1', S("abcde1")); 66 test0(S("abcdefghij"), '1', S("abcdefghij1")); 67 test0(S("abcdefghijklmnopqrst"), '1', S("abcdefghijklmnopqrst1"));
|
/external/clang/test/SemaObjC/ |
unknown-anytype.m | 3 extern __unknown_anytype test0; 17 int *ip = [test0 getIntPtr]; 20 [[test0 unknownMethod] otherUnknownMethod]; // expected-error{{no known method '-otherUnknownMethod'; cast the message send to the method's return type}} 21 (void)(int)[[test0 unknownMethod] otherUnknownMethod];; 25 if ([[test0 unknownMethod] otherUnknownMethod]) { // expected-error{{no known method '-otherUnknownMethod'; cast the message send to the method's return type}}
|
generic-selection.m | 15 void test0(A *a) {
|
/external/llvm/test/CodeGen/ARM/ |
taildup-branch-weight.ll | 5 ; CHECK: Machine code for function test0: 8 define void @test0(i32 %a, i32 %b, i32* %c, i32* %d) { 23 %test0 = icmp slt i32 %a, %b 24 br i1 %test0, label %B2, label %B3, !prof !0 39 %test0 = icmp slt i32 %a, %b 40 br i1 %test0, label %B1, label %B2, !prof !1
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.udir/ |
p1.cpp | 13 struct test0 {}; struct in namespace:ns0::ns1 33 test0 a;
|
/external/llvm/test/Transforms/ObjCARC/ |
intrinsic-use-isolated.ll | 9 ; CHECK-LABEL: define void @test0( 12 define void @test0(i8* %a, i8* %b) {
|
weak-contract.ll | 7 ; CHECK: define i8* @test0(i8** %p) { 11 define i8* @test0(i8** %p) {
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/ |
p3.cpp | 5 namespace test0 { namespace
|
/external/clang/test/CXX/class.access/class.protected/ |
p1-cxx11.cpp | 5 namespace test0 { namespace
|
/external/clang/test/SemaObjC/Inputs/ |
arc-system-header.h | 1 static inline void *test0(id x) { function
|