Searched refs:f0 (Results 126 - 150 of 508) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dpointer-subtract-compat.c9 void f0(void (*fp)(void)) { function
H A Dattr-used.c12 static void __attribute__((used)) f0(void) { function
20 static void __attribute__((used)) f0(void);
H A Dknr-def-call.c4 void f0(a, b, c, d) int a,b,c,d; {} function
6 f0(1); // expected-warning{{too few arguments}}
18 f3 t3(int b) { return b? f0 : f1; } // okay
/external/clang/test/SemaCXX/
H A Dincrement-decrement.cpp12 void f0(int e) { function
H A Dattr-regparm.cpp6 void __attribute__((regparm(3))) f0();
12 void X0::f0() { } function in class:X0
/external/clang/test/SemaTemplate/
H A Dtemplate-decl-fail.cpp10 template<int x> enum e0 f0(int a=x) {} function
H A Danonymous-union.cpp12 void f0() { function in struct:T1
19 void f1(T1<A> *S) { S->f0(); } // expected-note{{instantiation of member function}}
H A Dvalue-dependent-null-pointer-constant.cpp5 const char *f0(bool Cond) { function in struct:X0
19 template<unsigned I> int f0() { function
H A Dcanonical-expr-type-0x.cpp7 void f0(T x, decltype(f(N, x)) y) { } // expected-note{{previous}} function
10 void f0(T x, decltype((f)(N, x)) y) { } function
13 void f0(U u, decltype(f(M, u))) { } // expected-error{{redefinition}} function
H A Ddefault-arguments-cxx0x.cpp6 void f0();
9 void f0();
12 f0(); // okay!
H A Dexplicit-instantiation.cpp5 template typedef void f0; // expected-error{{explicit instantiation of typedef}} typedef
14 T f0(T x) { function in struct:X0
17 T* f0(T*, T*) { return T(); } // expected-warning{{expression which evaluates to zero treated as a null pointer constant of type 'int *'}} function in struct:X0
19 template <typename U> T f0(T, U) { return T(); } // expected-note-re {{candidate template ignored: could not match 'int (int, U){{( __attribute__\(\(thiscall\)\))?}}' against 'int (int){{( __attribute__\(\(thiscall\)\))?}} const'}} \ function in struct:X0
34 template int X0<int>::f0(int);
35 template int* X0<int>::f0(int*, int*); // expected-note{{in instantiation of member function 'X0<int>::f0' requested here}}
36 template int X0<int>::f0(int, float);
38 template int X0<int>::f0(int) const; // expected-error{{does not refer}}
39 template int* X0<int>::f0(in
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.spec.mfunc/
H A Dp1-neg.cpp8 void f0();
22 void A<T*, 2>::f0() { } function in class:A
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp7.cpp9 T* f0(T* ptr) { function in struct:X0
30 int_long_func *X0<int_long_func>::f0(int_long_func *) { return 0; } function in class:X0
H A Dp3.cpp5 template<typename T> void f0(T);
6 template void f0(int); // okay
7 template<typename T> void f0(T) { } function
15 template void X0::f0<int>(int); // expected-error {{incomplete type}}
16 template void X1<int>::f0<int>(int); // expected-error {{implicit instantiation of undefined template}}
H A Dp6.cpp12 template<typename T, typename U> void f0(T, U*) { } function
14 template void f0<int>(int, float*);
15 template void f0<>(double, float*);
/external/clang/test/CodeGen/
H A Dattr-availability.c17 // CHECK-10_4: declare extern_weak void @f0
18 // CHECK-10_5: declare void @f0
19 // CHECK-10_6: declare void @f0
20 void f0() __attribute__((availability(macosx,introduced=10.5)));
28 f0();
H A Davailable-externally-suppress.c6 inline void f0(int y) { x = y; } function
9 // CHECK: declare void @f0(i32)
11 f0(17);
/external/clang/test/CodeGenCXX/
H A Dsparcv9-abi.cpp7 void f0();
12 ~notpod() { f0(); }
/external/clang/test/CXX/special/class.ctor/
H A Dp1.cpp9 X0 (f0)(int);
10 X0 (f0)(type);
19 X0 (X0::f0)(int) { return X0(); } function
30 X1<T> (f0)(int);
31 X1<T> (f0)(type);
/external/clang/test/CXX/temp/temp.arg/temp.arg.type/
H A Dp2.cpp13 template <typename T> int f0(void *, const T&); // expected-note{{candidate template ignored: substitution failure}}
17 int i = f0(0, e); // expected-warning{{template argument uses unnamed type}}
19 f0(0, vla); // expected-error{{no matching function for call to 'f0'}}
23 template <typename R, typename A1> void f0(R (*)(A1));
34 f0( // expected-warning{{template argument uses unnamed type}}
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp3-0x.cpp9 template<typename T> X<T> f0(T&&);
18 X<int> xi0 = f0(prvalue<int>());
19 X<int> xi1 = f0(xvalue<int>());
20 X<int&> xi2 = f0(lvalue<int>());
21 X<Y> xy0 = f0(prvalue<Y>());
22 X<Y> xy1 = f0(xvalue<Y>());
23 X<Y&> xy2 = f0(lvalue<Y>());
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
H A Dp4-cxx0x.cpp24 int f0(int); // expected-note{{possible target}}
25 float f0(float); // expected-note{{possible target}}
27 decltype(f0) f0_a; // expected-error{{reference to overloaded function could not be resolved; did you mean to call it?}}
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
H A Dp6.cpp8 template<int X, int Y> void f0(A0<X, Y>) { } // expected-note{{previous}} function
9 template<int N, int M> void f0(A0<M, N>) { } function
10 template<int V1, int V2> void f0(A0<V1, V2>) { } // expected-error{{redefinition}} function
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dext-blocks.cpp5 int f0(Args ...args) { function
16 return f0(args...);
20 template int f0(int, float, double);
/external/openssl/crypto/
H A Dia64cpuid.S70 mov f127=f0
78 mov f6=f0
81 mov f7=f0
84 mov f8=f0
87 mov f9=f0
90 mov f10=f0
93 mov f11=f0
96 mov f12=f0
99 mov f13=f0
102 mov f14=f0
[all...]

Completed in 2410 milliseconds

1234567891011>>