/external/clang/test/Analysis/ |
complex.c | 5 void f1(int * p) { function
|
/external/clang/test/Analysis/diagnostics/ |
undef-value-param.c | 48 double *f1; member in struct:WithFields 55 X->f1 = getValidPtr(); 59 st.f1 = 0; // expected-note {{Null pointer value stored to 'st.f1'}} 62 return (*st.f1); //expected-warning {{Dereference of null pointer}} 63 //expected-note@-1{{Dereference of null pointer (loaded from field 'f1')}} [all...] |
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
p4.cpp | 10 void f1(); // expected-note{{here}} 15 template void X0<int>::f1(); // expected-error{{explicit instantiation of undefined member function}} 22 template<> void X0<long>::f1(); // expected-note{{previous template specialization is here}} 23 template void X0<long>::f1(); // expected-warning{{explicit instantiation of 'f1' that occurs after an explicit specialization will be ignored}}
|
/external/clang/test/CodeGen/ |
2008-07-31-asm-labels.c | 19 void f1() { function
|
PR2743-reference-missing-static.c | 13 void f1() { e1(); } function
|
_Bool-conversion.c | 10 _Bool f1(void) { function
|
always_inline.c | 12 int f1() { function
|
assign.c | 21 // CHECK: define void @f1() 28 void f1() { function
|
builtins-arm.c | 9 void f1(char *a, char *b) { function
|
attr-availability.c | 22 // CHECK-10_4: declare extern_weak void @f1 23 // CHECK-10_5: declare extern_weak void @f1 24 // CHECK-10_6: declare void @f1 25 void f1() __attribute__((availability(macosx,introduced=10.6))); 29 f1();
|
available-externally-suppress.c | 14 inline int __attribute__((always_inline)) f1(int x) { function 24 // CHECK-NOT: call {{.*}} @f1 26 return f1(x);
|
staticinit.c | 29 // RUN: grep "f1.l0 = internal global i32 ptrtoint (i32 ()\* @f1 to i32)" %t 30 int f1(void) { static int l0 = (unsigned) f1; } function
|
/external/clang/test/CodeGenCXX/ |
PR5834-constructor-conversion.cpp | 11 void f1() { function
|
cxx-apple-kext.cpp | 35 extern "C" void f1() { function
|
/external/clang/test/Index/ |
complete-unterminated.c | 11 void f1(char);
|
/external/clang/test/PCH/ |
multiple_decls.c | 15 void f1(int i) { function
|
functions.c | 12 return f1(x, y); 14 return f1(x); // expected-error{{too few arguments to function call}} 15 // expected-note@functions.h:7{{'f1' declared here}}
|
/external/clang/test/Parser/ |
pragma-fp-contract.c | 3 void f1(void) { function
|
/external/clang/test/Sema/ |
implicit-builtin-redecl.c | 12 void f1(void) { function
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
UT_copy_test.java | 37 float[] f1 = new float[1024 * 2]; local 39 for (int ct=0; ct < f1.length; ct++) { 40 f1[ct] = (float)ct; 42 a1.copyFrom(f1); 47 for (int ct=0; ct < f1.length; ct++) { 48 if (f1[ct] != f2[ct]) { 50 Log.v("RS Test", "Compare failed at " + ct + ", " + f1[ct] + ", " + f2[ct]); 61 float[] f1 = new float[1024 * 4]; local 63 for (int ct=0; ct < f1.length; ct++) { 64 f1[ct] = (float)ct 85 float[] f1 = new float[1024 * 4]; local [all...] |
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
UT_copy_test.java | 37 float[] f1 = new float[1024 * 2]; local 39 for (int ct=0; ct < f1.length; ct++) { 40 f1[ct] = (float)ct; 42 a1.copyFrom(f1); 47 for (int ct=0; ct < f1.length; ct++) { 48 if (f1[ct] != f2[ct]) { 50 Log.v("RS Test", "Compare failed at " + ct + ", " + f1[ct] + ", " + f2[ct]); 61 float[] f1 = new float[1024 * 4]; local 63 for (int ct=0; ct < f1.length; ct++) { 64 f1[ct] = (float)ct 85 float[] f1 = new float[1024 * 4]; local [all...] |
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_DeleteOnExitTest.java | 26 File f1 = new File(args[i]); local 27 f1.deleteOnExit();
|
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.spec.mfunc/ |
p1-neg.cpp | 9 void f1(); 25 void A<T, N>::f1() { } // expected-error{{out-of-line definition}} function in class:A
|
/external/clang/test/Modules/Inputs/ |
module_private_left.h | 10 __module_private__ void f1(T*); 13 __module_private__ void f1(T*);
|
/external/clang/test/SemaCXX/ |
attr-regparm.cpp | 7 void __attribute__((regparm(3))) f1(); 13 void __attribute__((regparm(3))) X0::f1() { } function in class:X0
|