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

1234567891011>>

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
H A Dp4.cpp4 void f0() { function
7 inline void f0(); // expected-error {{function definition cannot precede inline declaration}}
/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 Dframe-pointer-elim.c5 // DARWIN: f0:
14 // LINUX: f0:
23 // OMIT_ALL: f0:
32 // OMIT_LEAF: f0:
39 void f0() {} function
40 void f1() { f0(); }
H A Dbitfield-promote.c5 long long f0(void) { function
6 struct { unsigned f0 : 32; } x = { 18 }; member in struct:__anon4189
7 return (long long) (x.f0 - (int) 22);
11 struct { unsigned f0 : 31; } x = { 18 }; member in struct:__anon4190
12 return (long long) (x.f0 - (int) 22);
16 struct { unsigned f0 ; } x = { 18 }; member in struct:__anon4191
17 return (long long) (x.f0 - (int) 22);
H A DPR3589-freestanding-libcalls.c7 void f0() { function
/external/clang/test/Driver/
H A Dcc-log-diagnostics.c7 int f0() {} function
/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
H A Ddiagnostics-option-names.c4 int f0(int, unsigned);
5 int f0(int x, unsigned y) { function
/external/llvm/utils/lit/lit/ExampleTests/Clang/
H A Dfsyntax-only.c3 int f0(void) {} // expected-warning {{control reaches end of non-void function}} 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.cpp3 template<typename T> T f0(T, T); //expected-note{{candidate}}
6 int (*f0a)(int, int) = f0;
7 int (*f0b)(int, int) = &f0;
8 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.cpp4 template<typename T> void f0(T) { } function
5 template<typename T, typename U> void f0(T) { } function
6 template<typename T, typename U> void f0(U) { } function
7 void f0();
8 template<typename T> void f0(T*);
9 void f0(int);
10 template<int I> void f0();
11 template<typename T> void f0();
/external/clang/test/CXX/over/over.match/over.match.best/
H A Dp1.cpp3 template<typename T> int &f0(T*, int);
4 float &f0(void*, int);
8 int &ir = f0(ip, 0);
11 float &fr = f0(vp, 0);
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
H A Dp9-0x.cpp3 template<typename T> int &f0(T&);
4 template<typename T> float &f0(T&&);
8 int &ir0 = f0(i);
9 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.cpp4 static const int f0 = 0; member in struct:S
8 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 240 milliseconds

1234567891011>>