/external/clang/test/CodeGen/ |
c-strings.c | 15 // CHECK: define void @f0() 16 void f0() { function
|
incomplete-function-type.c | 4 // CHECK: define void @f0 14 void f0() {} function
|
tentative-decls.c | 14 struct s0 *f0() { function
|
unreachable.c | 7 int f0() { function
|
const-init.c | 23 struct { } *f0; member in struct:s2::__anon6344 24 } f0; member in union:s2 27 int g0 = (int)(&(((union s2 *) 0)->f0.f0) - 0); 108 struct g20_s0 *f0, **f1; member in struct:g20_s1 111 static struct g20_s1 l0 = { ((void*) 0), &l0.f0 };
|
mangle.c | 8 void __attribute__((__overloadable__)) f0(int a) {} function 10 void __attribute__((__overloadable__)) f0(long b) {} function
|
/external/clang/test/CodeGenCXX/ |
alloca-align.cpp | 9 // CHECK: define void @f0 11 extern "C" void f0() { function
|
mangle-template.cpp | 6 void f0(T<x> a0) {} function in namespace:test1 11 void f0(float) {} function in namespace:test1 14 void f1(t1<f0> a0) {} 19 void f0(float) {} function in namespace:test2 23 void f1(t1<f0> a0) {} 66 void f0(T<&A::im0> a0) {} function in namespace:test6
|
/external/clang/test/Modules/Inputs/ |
module_private_left.h | 7 int &f0(int);
|
/external/clang/test/PCH/ |
functions.c | 8 int f0(int x0, int y0, ...) { return x0 + y0; } function
|
/external/clang/test/Sema/ |
builtin-object-size.c | 6 int f0() { function
|
warn-unused-value.c | 84 struct s0 { int f0; }; member in struct:s0 86 void f0(int a); 89 f0((int)(a->f0 + 1, 10)); // expected-warning {{expression result unused}}
|
warn-unused-variables.c | 9 void f0(void) { function
|
attr-availability-ios.c | 3 void f0(int) __attribute__((availability(ios,introduced=2.0,deprecated=2.1))); // expected-note {{'f0' declared here}} 14 f0(0); // expected-warning{{'f0' is deprecated: first deprecated in iOS 2.1}}
|
attr-availability-macosx.c | 3 void f0(int) __attribute__((availability(macosx,introduced=10.4,deprecated=10.6))); 11 f0(0);
|
warn-unused-function.c | 9 static int f0() { return 17; } // expected-warning{{not needed and will not be emitted}} function 10 int x = sizeof(f0());
|
struct-decl.c | 43 struct s0 f0(void) {} function
|
/external/clang/test/SemaCXX/ |
type-definition-in-specifier.cpp | 13 void f0() { function
|
/external/v8/test/mjsunit/ |
call.js | 28 function f0() { function 32 assertTrue(this === f0.call(), "1"); 34 assertTrue(this === f0.call(this), "w"); 35 assertTrue(this === f0.call(this, 1), "w"); 36 assertTrue(this === f0.call(this, 1, 2), "w"); 38 assertTrue(this === f0.call(null), "3a"); 39 assertTrue(this === f0.call(null, 1), "3b"); 40 assertTrue(this === f0.call(null, 1, 2), "3c"); 42 assertTrue(this === f0.call(void 0), "4a"); 43 assertTrue(this === f0.call(void 0, 1), "4b") [all...] |
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p2.cpp | 19 template<typename T> void f0(T) { // expected-note{{here}} function in namespace:N0 23 template<> void f0(NonDefaultConstructible) { } function in namespace:N0 26 f0(NDC); 29 template<> void f0(int); 30 template<> void f0(long); 33 template<> void N0::f0(int) { } // okay function in class:N0 36 template<> void N0::f0(long) { } // expected-error{{does not enclose namespace}} function in class:N1::N0 39 template<> void N0::f0(double); // expected-warning{{C++11 extension}} 40 template<> void N0::f0(double) { } function in class:N0
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/statements/ |
switch2.js | 46 function f0(i) { function 60 f0("a"), "ab*"); 63 f0("b"), "ab*"); 66 f0("*"), "ab*"); 69 f0("c"), "c"); 72 f0("d"), "d");
|
/external/clang/test/CXX/expr/ |
p9.cpp | 12 __typeof__(0 + 0.0f) f0; 13 float &fr = f0;
|
/external/clang/test/SemaTemplate/ |
instantiate-local-class.cpp | 4 void f0() { function 13 template void f0<int>();
|
/dalvik/dx/tests/079-dex-local-variable-renumbering/ |
Blort.java | 20 float f0 = 0.0f; local
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/ |
p13.cpp | 6 void f0(Types ...args);
|