/external/clang/test/PCH/ |
chain-ext_vector.c | 9 int test(float4 f4) { 10 return f4.xy; // expected-error{{float2}}
|
ext_vector.c | 8 int test(float4 f4) { 9 return f4.xy; // expected-error{{float2}}
|
/external/clang/test/ASTMerge/Inputs/ |
function1.c | 5 void f4(int, int);
|
function2.c | 6 static void f4(float, float);
|
/external/clang/test/CodeGenCXX/ |
reinterpret-cast.cpp | 14 void f4(int*&); 16 f4(reinterpret_cast<int*&>(u));
|
/external/clang/test/CodeGen/ |
inline2.c | 42 // CHECK-GNU89: define available_externally i32 @f4() 43 // CHECK-C99: define i32 @f4() 44 int f4(void); 45 extern inline int f4(void) { return 0; } function 60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
|
microsoft-call-conv.c | 6 void __fastcall f4(void) { function 7 // CHECK: define x86_fastcallcc void @f4() 26 void (__fastcall *pf4)(void) = f4; 31 f4(); f5(); f6(); 32 // CHECK: call x86_fastcallcc void @f4()
|
struct-passing.c | 14 void __attribute__((const)) f4(T1 a); 17 void *ps[] = { f0, f1, f2, f3, f4, f5 }; 23 // CHECK: declare void @f4({{.*}} byval align 4)
|
stdcall-fastcall.c | 6 void __attribute__((fastcall)) f4(void) { function 7 // CHECK: define x86_fastcallcc void @f4() 26 void (__attribute__((fastcall)) *pf4)(void) = f4; 31 f4(); f5(); f6(); 32 // CHECK: call x86_fastcallcc void @f4()
|
functions.c | 39 void f4() {} function 40 void f5() { f4(42); } //expected-warning {{too many arguments}}
|
c-strings.c | 29 void f4() { function
|
/external/clang/test/Sema/ |
sentinel-attribute.c | 8 void f4(int a, ...) __attribute__ ((sentinel(1, 2, 3))); //expected-error{{attribute takes no more than 2 arguments}} 9 void f4(int a, ...) __attribute__ ((sentinel(-1))); //expected-error{{parameter 1 less than zero}} 10 void f4(int a, ...) __attribute__ ((sentinel(0, 2))); // expected-error{{parameter 2 not 0 or 1}}
|
arg-duplicate.c | 12 void f4(void) { function
|
attr-availability-macosx.c | 7 void f4(int) __attribute__((availability(macosx,introduced=10.1,deprecated=10.3,obsoleted=10.5), availability(ios,introduced=2.0,deprecated=3.0))); // expected-note{{explicitly marked unavailable}} 15 f4(0); // expected-error{{f4' is unavailable: obsoleted in Mac OS X 10.5}}
|
attr-noreturn.c | 25 void f4() __attribute__((noreturn)); 26 void f4() { function 27 return; // expected-error {{function 'f4' declared 'noreturn' should not return}}
|
builtin-object-size.c | 24 void f4(const char *fmt, ...) { function
|
floating-point-compare.c | 15 int f4(float x) { function
|
/external/clang/test/SemaTemplate/ |
template-id-expr.cpp | 59 static int f4(int); 61 static void f4(U); 76 x = Y0::f4(0); 77 x = Y0::f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} 78 x = Y0::template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} 80 x = this->f4(0); 81 x = this->f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} 82 x = this->template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}}
|
/development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/ |
mono.rs | 23 float4 f4 = rsUnpackColor8888(*v_in); 25 float3 mono = dot(f4.rgb, gMonoMult);
|
/external/oprofile/libutil++/tests/ |
glob_filter_tests.cpp | 47 glob_filter f4("foo", "foo"); 48 check(f4, "foo", false); 49 check(f4, "foo1", false); 50 check(f4, "foo/foo", false);
|
path_filter_tests.cpp | 47 path_filter f4("foo", "foo"); 48 check(f4, "foo", false); 49 check(f4, "foo1", false); 50 check(f4, "foo/foo", false);
|
/external/libffi/testsuite/libffi.call/ |
struct8.c | 14 float f4; member in struct:__anon7331 22 ts.f4 += 1; 59 ts8_arg.f4 = -55.5f; 64 printf ("%g\n", ts8_arg.f4); 71 printf ("%g\n", ts8_result->f4); 76 CHECK(ts8_result->f4 == -55.5f + 1);
|
/external/clang/test/Parser/ |
cxx-stmt.cpp | 49 void f4() { function
|
/external/clang/test/SemaCXX/ |
function-type-qual.cpp | 14 static cfn f4; // expected-error {{a qualified function type cannot be used to declare a static member function}} member in class:C
|
if-empty-body.cpp | 18 void f4(int i) { function
|