/external/clang/test/Sema/ |
conditional-expr.c | 38 unsigned long test0 = 5; local 39 test0 = test0 ? (long) test0 : test0; // expected-warning {{operand of ? changes signedness: 'long' to 'unsigned long'}} 40 test0 = test0 ? (int) test0 : test0; // expected-warning {{operand of ? changes signedness: 'int' to 'unsigned long'}} 41 test0 = test0 ? (short) test0 : test0; // expected-warning {{operand of ? changes signedness: 'short' to (…) [all...] |
/external/clang/test/CodeGenObjC/ |
arc-related-result-type.m | 3 @interface Test0 6 void test0(Test0 *val) { 7 Test0 *x = [val self]; 9 // CHECK-LABEL: define void @test0( 10 // CHECK: [[VAL:%.*]] = alloca [[TEST0:%.*]]* 11 // CHECK-NEXT: [[X:%.*]] = alloca [[TEST0]]* 12 // CHECK-NEXT: store [[TEST0]]* null 16 // CHECK-NEXT: load [[TEST0]]** [[VAL]], 21 // CHECK-NEXT: [[T2:%.*]] = bitcast i8* [[T1]] to [[TEST0]]* [all...] |
objfw.m | 5 @interface Test0 8 void test0(void) { 9 [Test0 test]; 11 // CHECK-LABEL: define void @test0()
|
/external/llvm/test/MC/AsmParser/ |
directive_subsections_via_symbols.s | 3 # CHECK: TEST0: 5 TEST0:
|
directive_symbol_attrs.s | 3 # CHECK: TEST0: 6 TEST0:
|
macros-parsing.s | 4 .macro .test0 9 .test0 12 .test0 14 // CHECK-ERRORS: macro '.test0' is already defined 15 .macro .test0
|
assignment.s | 3 # CHECK: TEST0: 5 TEST0:
|
directive_comm.s | 3 # CHECK: TEST0: 7 TEST0:
|
directive_desc.s | 3 # CHECK: TEST0: 6 TEST0:
|
directive_org.s | 3 # CHECK: TEST0: 5 TEST0:
|
directive_set.s | 3 # CHECK: TEST0: 5 TEST0:
|
directive_space.s | 3 # CHECK: TEST0: 5 TEST0:
|
/external/llvm/test/MC/X86/ |
x86_directives.s | 3 # CHECK: TEST0: 5 TEST0:
|
/external/clang/test/SemaCXX/ |
member-pointers-2.cpp | 14 struct Test0 { 18 Test0 *memptr; 24 p = &Test0::memfoo++; 25 p = &Test0::memfoo--; 26 p = &Test0::memarr[1]; 27 p = &Test0::memptr->memint; 28 p = &Test0::memstruct.a; 29 p = &Test0::memfun(); 33 void test0() { function 34 Test0 mytest [all...] |
/external/libcxx/test/strings/basic.string/string.nonmembers/string_op+/ |
pointer_string.pass.cpp | 27 test0(const typename S::value_type* lhs, const S& rhs, const S& x) function 47 test0("", S(""), S("")); 48 test0("", S("12345"), S("12345")); 49 test0("", S("1234567890"), S("1234567890")); 50 test0("", S("12345678901234567890"), S("12345678901234567890")); 51 test0("abcde", S(""), S("abcde")); 52 test0("abcde", S("12345"), S("abcde12345")); 53 test0("abcde", S("1234567890"), S("abcde1234567890")); 54 test0("abcde", S("12345678901234567890"), S("abcde12345678901234567890")); 55 test0("abcdefghij", S(""), S("abcdefghij")) [all...] |
string_pointer.pass.cpp | 27 test0(const S& lhs, const typename S::value_type* rhs, const S& x) function 47 test0(S(""), "", S("")); 48 test0(S(""), "12345", S("12345")); 49 test0(S(""), "1234567890", S("1234567890")); 50 test0(S(""), "12345678901234567890", S("12345678901234567890")); 51 test0(S("abcde"), "", S("abcde")); 52 test0(S("abcde"), "12345", S("abcde12345")); 53 test0(S("abcde"), "1234567890", S("abcde1234567890")); 54 test0(S("abcde"), "12345678901234567890", S("abcde12345678901234567890")); 55 test0(S("abcdefghij"), "", S("abcdefghij")) [all...] |
string_string.pass.cpp | 39 test0(const S& lhs, const S& rhs, const S& x) function 73 test0(S(""), S(""), S("")); 74 test0(S(""), S("12345"), S("12345")); 75 test0(S(""), S("1234567890"), S("1234567890")); 76 test0(S(""), S("12345678901234567890"), S("12345678901234567890")); 77 test0(S("abcde"), S(""), S("abcde")); 78 test0(S("abcde"), S("12345"), S("abcde12345")); 79 test0(S("abcde"), S("1234567890"), S("abcde1234567890")); 80 test0(S("abcde"), S("12345678901234567890"), S("abcde12345678901234567890")); 81 test0(S("abcdefghij"), S(""), S("abcdefghij")) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.nonmembers/string_op+/ |
pointer_string.pass.cpp | 27 test0(const typename S::value_type* lhs, const S& rhs, const S& x) function 47 test0("", S(""), S("")); 48 test0("", S("12345"), S("12345")); 49 test0("", S("1234567890"), S("1234567890")); 50 test0("", S("12345678901234567890"), S("12345678901234567890")); 51 test0("abcde", S(""), S("abcde")); 52 test0("abcde", S("12345"), S("abcde12345")); 53 test0("abcde", S("1234567890"), S("abcde1234567890")); 54 test0("abcde", S("12345678901234567890"), S("abcde12345678901234567890")); 55 test0("abcdefghij", S(""), S("abcdefghij")) [all...] |
string_pointer.pass.cpp | 27 test0(const S& lhs, const typename S::value_type* rhs, const S& x) function 47 test0(S(""), "", S("")); 48 test0(S(""), "12345", S("12345")); 49 test0(S(""), "1234567890", S("1234567890")); 50 test0(S(""), "12345678901234567890", S("12345678901234567890")); 51 test0(S("abcde"), "", S("abcde")); 52 test0(S("abcde"), "12345", S("abcde12345")); 53 test0(S("abcde"), "1234567890", S("abcde1234567890")); 54 test0(S("abcde"), "12345678901234567890", S("abcde12345678901234567890")); 55 test0(S("abcdefghij"), "", S("abcdefghij")) [all...] |
string_string.pass.cpp | 39 test0(const S& lhs, const S& rhs, const S& x) function 73 test0(S(""), S(""), S("")); 74 test0(S(""), S("12345"), S("12345")); 75 test0(S(""), S("1234567890"), S("1234567890")); 76 test0(S(""), S("12345678901234567890"), S("12345678901234567890")); 77 test0(S("abcde"), S(""), S("abcde")); 78 test0(S("abcde"), S("12345"), S("abcde12345")); 79 test0(S("abcde"), S("1234567890"), S("abcde1234567890")); 80 test0(S("abcde"), S("12345678901234567890"), S("abcde12345678901234567890")); 81 test0(S("abcdefghij"), S(""), S("abcdefghij")) [all...] |
/external/clang/test/CodeGenObjCXX/ |
gc.mm | 3 namespace test0 { 10 A::A() : x(test0::x) {} 13 // CHECK: [[THIS:%.*]] = alloca [[TEST0:%.*]]*, align 8 15 // CHECK-NEXT: [[T0:%.*]] = load [[TEST0]]** [[THIS]] 16 // CHECK-NEXT: [[T1:%.*]] = getelementptr inbounds [[TEST0]]* [[T0]], i32 0, i32 0
|
message.mm | 6 @interface Test0 9 namespace test0 { 11 operator Test0*(); 19 // CHECK: [[T0:%.*]] = call [[TEST0:%.*]]* @_ZN5test01AcvP5Test0Ev( 21 // CHECK-NEXT: [[T2:%.*]] = bitcast [[TEST0]]* [[T0]] to i8*
|
/external/clang/test/SemaObjC/ |
debugger-cast-result-to-id.m | 3 extern __unknown_anytype test0; 7 (void)(int)[[test0 unknownMethod] otherUnknownMethod];; 9 id x = test0;
|
/external/clang/test/Driver/ |
rewrite-objc.m | 2 // RUN: FileCheck -check-prefix=TEST0 %s 3 // TEST0: clang{{.*}}" "-cc1" 4 // TEST0: "-rewrite-objc" 6 // TEST0: "-fmessage-length" "0" "-stack-protector" "1" "-mstackrealign" "-fblocks" "-fobjc-runtime=macosx" "-fencode-extended-block-signature" "-fno-objc-infer-related-result-type" "-fobjc-exceptions" "-fexceptions" "-fdiagnostics-show-option"
|
/external/clang/test/Parser/ |
recovery.m | 3 @interface Test0
|