/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/ |
p4.cpp | 3 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/ |
lookup_right.hpp | 1 float *f0(float*);
|
lookup_left.hpp | 1 int *f0(int*);
|
/external/clang/test/CodeGen/ |
2008-09-22-bad-switch-type.c | 4 void f0(void) { function
|
bitfield-promote.c | 3 long long f0(void) { function 4 struct { unsigned f0 : 32; } x = { 18 }; member in struct:__anon6111 5 return (long long) (x.f0 - (int) 22); 7 // CHECK: @f0() 11 struct { unsigned f0 : 31; } x = { 18 }; member in struct:__anon6112 12 return (long long) (x.f0 - (int) 22); 18 struct { unsigned f0 ; } x = { 18 }; member in struct:__anon6113 19 return (long long) (x.f0 - (int) 22);
|
PR3589-freestanding-libcalls.c | 7 void f0() { function
|
fast-math.c | 2 float f0, f1, f2; variable 8 f0 = f1 + f2;
|
finite-math.c | 5 float f0, f1, f2; variable 13 f0 = f1 + f2;
|
/external/clang/test/Driver/ |
cc-log-diagnostics.c | 7 int f0() {} function
|
frame-pointer-elim.c | 34 void f0() {} function 35 void f1() { f0(); }
|
/external/clang/test/Frontend/Inputs/TestFramework.framework/Headers/ |
TestFramework.h | 1 static int f0(void) {} function
|
/external/clang/test/Frontend/ |
warning-mapping-3.c | 10 static void f0(void) {} // expected-fatal {{unused function}} function
|
warning-mapping-2.c | 4 void f0() { f1(); } // expected-error {{implicit declaration of function}} function
|
ast-codegen.c | 10 // CHECK: define i32 @f0() 11 int f0() { function
|
Weverything.c | 6 int f0(int, unsigned); 7 int f0(int x, unsigned y) { function
|
Wno-everything.c | 3 int f0(int, unsigned); 4 int f0(int x, unsigned y) { function
|
diagnostics-option-names.c | 4 int f0(int, unsigned); 5 int f0(int x, unsigned y) { function
|
/external/clang/test/CXX/over/over.over/ |
p1.cpp | 3 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...] |
p2.cpp | 4 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)'}}
|
p4.cpp | 3 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;
|
/external/clang/test/CXX/over/over.match/over.match.best/ |
p1.cpp | 4 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/Sema/ |
block-explicit-noreturn-type.c | 6 void f0() { function
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/ |
p13.cpp | 5 static const int f0 = 0; member in struct:S 9 int S::f1 = f0;
|
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/ |
p4.cpp | 5 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/CodeCompletion/ |
call.c | 3 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#>)
|