Searched refs:f0 (Results 1 - 25 of 508) sorted by relevance

1234567891011>>

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
H A Dp4.cpp3 void f0() { // expected-note {{previous definition is here}} function
6 inline void f0(); // expected-error {{inline declaration of 'f0' follows non-inline definition}}
/external/clang/test/Modules/Inputs/
H A Dlookup_right.hpp1 float *f0(float*);
H A Dlookup_left.hpp1 int *f0(int*);
/external/clang/test/CodeGen/
H A D2008-09-22-bad-switch-type.c4 void f0(void) { function
H A Dbitfield-promote.c3 long long f0(void) { function
4 struct { unsigned f0 : 32; } x = { 18 }; member in struct:__anon18618
5 return (long long) (x.f0 - (int) 22);
7 // CHECK: @f0()
11 struct { unsigned f0 : 31; } x = { 18 }; member in struct:__anon18619
12 return (long long) (x.f0 - (int) 22);
18 struct { unsigned f0 ; } x = { 18 }; member in struct:__anon18620
19 return (long long) (x.f0 - (int) 22);
H A DPR3589-freestanding-libcalls.c7 void f0() { function
H A Dfast-math.c2 float f0, f1, f2; variable
8 f0 = f1 + f2;
H A Dfinite-math.c2 float f0, f1, f2; variable
8 f0 = f1 + f2;
/external/clang/test/Driver/
H A Dcc-log-diagnostics.c7 int f0() {} function
H A Dframe-pointer-elim.c29 void f0() {} function
30 void f1() { f0(); }
/external/clang/test/Frontend/Inputs/TestFramework.framework/Headers/
H A DTestFramework.h1 static int f0(void) {} function
/external/clang/test/Frontend/
H A Dwarning-mapping-3.c10 static void f0(void) {} // expected-fatal {{unused function}} function
H A Dwarning-mapping-2.c4 void f0() { f1(); } // expected-error {{implicit declaration of function}} function
H A Dast-codegen.c10 // CHECK: define i32 @f0()
11 int f0() { function
H A DWeverything.c6 int f0(int, unsigned);
7 int f0(int x, unsigned y) { function
H A DWno-everything.c3 int f0(int, unsigned);
4 int f0(int x, unsigned y) { function
/external/clang/test/CXX/over/over.over/
H A Dp4.cpp3 template<typename T> T f0(T); // expected-note{{candidate function}}
4 int f0(int); // expected-note{{candidate function}}
7 int (*fp0)(int) = f0;
8 int (*fp1)(int) = &f0;
9 float (*fp2)(float) = &f0;
13 int f0(int); // expected-note{{candidate function}}
18 int (*fp0)(int) = f0; // expected-error{{address of overloaded function 'f0' is ambiguous}}
19 float (*fp1)(float) = f0;
H A Dp1.cpp3 template<typename T> T f0(T);
4 int f0(int);
8 int (*f0)(int); member in struct:S
13 int (*f0a)(int) = f0;
14 int (*f0b)(int) = &f0;
15 int (*f0c)(int) = (f0);
16 float (*f0d)(float) = f0;
17 float (*f0e)(float) = &f0;
18 float (*f0f)(float) = (f0);
19 int (&f0g)(int) = f0;
55 x + f0; local
56 x + &f0; local
59 x * f0; local
61 x / f0; local
[all...]
H A Dp2.cpp4 T f0(T, T); // expected-note{{deduced conflicting types for parameter 'T' ('int' vs. 'float')}}
7 int (*f0a)(int, int) = f0;
8 int (*f0b)(int, int) = &f0;
9 int (*f0c)(int, float) = f0; // expected-error{{address of overloaded function 'f0' does not match required type 'int (int, float)'}}
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
H A Dp4.cpp5 template<typename T> void f0(T) { } function
6 template<typename T, typename U> void f0(T) { } function
7 template<typename T, typename U> void f0(U) { } function
8 void f0();
9 template<typename T> void f0(T*);
10 void f0(int);
11 template<int I> void f0();
12 template<typename T> void f0();
/external/clang/test/CXX/over/over.match/over.match.best/
H A Dp1.cpp4 template<typename T> int &f0(T*, int);
5 float &f0(void*, int);
9 int &ir = f0(ip, 0);
12 float &fr = f0(vp, 0);
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
H A Dp9-0x.cpp4 template<typename T> int &f0(T&);
5 template<typename T> float &f0(T&&);
9 int &ir0 = f0(i);
10 float &fr0 = f0(5);
/external/clang/test/Sema/
H A Dblock-explicit-noreturn-type.c6 void f0() { function
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp13.cpp5 static const int f0 = 0; member in struct:S
9 int S::f1 = f0;
/external/clang/test/CodeCompletion/
H A Dcall.c3 void f0(float x, float y);
6 f0(0, 0);
10 // CHECK-CC1: f0(<#float x#>, float y)
12 // CHECK-CC2: f0(float x, <#float y#>)

Completed in 7235 milliseconds

1234567891011>>