Searched refs:f0 (Results 176 - 200 of 348) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dwarn-unused-variables.c9 void f0(void) { function
H A Dattr-availability-ios.c3 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}}
H A Dattr-availability-macosx.c3 void f0(int) __attribute__((availability(macosx,introduced=10.4,deprecated=10.6)));
11 f0(0);
H A Dwarn-unused-function.c9 static int f0() { return 17; } // expected-warning{{not needed and will not be emitted}} function
10 int x = sizeof(f0());
H A Dstruct-decl.c43 struct s0 f0(void) {} function
H A Dexpr-address-of.c40 void f0() { function
64 register struct { int f0[10]; } x4; member in struct:__anon4542
65 int *_dummy4 = &x4.f0[2]; // expected-error {{address of register variable requested}}
/external/clang/test/SemaCXX/
H A Dtype-definition-in-specifier.cpp13 void f0() { function
H A Dfunction-extern-c.cpp28 extern "C" S f0(void); // expected-warning {{'f0' has C-linkage specified, but returns user-defined type 'S' which is incompatible with C}}
H A Dwarn-unused-parameters.cpp4 T f0(T x);
12 template<typename T> T X<T>::f0(T x) { return x; } function in class:X
20 x.f0(i);
H A Dmember-expr.cpp25 int f0; member in struct:A
28 A *f0();
30 int f0(B *b) { function
31 return b->f0->f0; // expected-error{{did you mean to call it with no arguments}}
/external/v8/test/mjsunit/bugs/
H A Dbug-941049.js47 function f0() { function
48 g(f0);
49 var result = h(f0);
77 test(f0);
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp2.cpp19 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
H A Dp2-0x.cpp19 template<typename T> void f0(T) { 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) { } function in class:N0
H A Dp1.cpp17 template<typename T> void f0(T) { function
21 template<> void f0(NonDefaultConstructible) { } function
24 f0(NDC);
/external/clang/test/CodeGenCXX/
H A Dmangle-template.cpp6 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
H A Dvtable-linkage.cpp194 virtual void f0();
200 void G<T>::f0() {} function in class:G
/external/clang/test/CXX/expr/
H A Dp9.cpp11 __typeof__(0 + 0.0f) f0;
12 float &fr = f0;
/external/clang/test/CodeGen/
H A Dmangle.c8 void __attribute__((__overloadable__)) f0(int a) {} function
10 void __attribute__((__overloadable__)) f0(long b) {} function
H A Darm-vector-arguments.c12 // CHECK: define void @f0(%struct.int8x16x2_t* noalias sret %agg.result, <16 x i8> %{{.*}}, <16 x i8> %{{.*}})
13 int8x16x2_t f0(int8x16_t a0, int8x16_t a1) { function
/external/clang/test/SemaTemplate/
H A Dinstantiate-local-class.cpp3 void f0() { function
12 template void f0<int>();
H A Dtemp_func_order.cpp3 int &f0(T);
6 float &f0(T*);
9 int &ir = f0(i);
10 float &fr = f0(ip);
H A Dinstantiate-init.cpp8 X0 f0(T t, U u) { function
14 f0(ip, fp);
15 f0(ip, dp); // expected-note{{instantiation}}
48 void f0() function in namespace:PR6657
55 f0<int>();
/external/clang/test/Modules/Inputs/
H A Dmodule_private_left.h7 int &f0(int);
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1.cpp10 void f0(const T&, const U&);
25 void X0<T, U>::f0(const T&, const U&) { // expected-note{{previous definition}} function in class:X0
47 // FIXME: error message should probably say, "redefinition of 'X0<T, U>::f0'"
48 // rather than just "redefinition of 'f0'"
50 void X0<T, U>::f0(const T&, const U&) { // expected-error{{redefinition}} function in class:X0
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp6.cpp98 template<typename R, typename T> void f0(R (*)(T), T);
106 f0(g, 1);
107 f0(&g, 1);

Completed in 383 milliseconds

1234567891011>>