/external/chromium_org/tools/gyp/test/win/shard/ |
hello3.cc | 5 int f3() { function
|
/external/clang/test/CodeGen/ |
redef-ext-inline.c | 5 int f3 (void) {return f1();} function
|
ppc64-extend.c | 10 int f3(void) { return 0; } function 11 // CHECK: define signext i32 @f3() [[NUW]]
|
inline2.c | 19 // CHECK-GNU89: define i32 @f3() 20 // CHECK-C99: define i32 @f3() 21 extern inline int f3(void); 22 int f3(void) { return 0; } function 60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
|
always_inline.c | 19 int f3(void) { return f2(); } function
|
attr-availability.c | 11 // CHECK-10_4: define void @f3 12 // CHECK-10_5: define void @f3 13 // CHECK-10_6: define void @f3 14 void f3() __attribute__((availability(macosx,introduced=10.5))); 15 void f3() { } function
|
microsoft-call-conv.c | 5 void __thiscall f3(void); 18 f3(); 19 // CHECK: call x86_thiscallcc void @f3() 25 void (__thiscall *pf3)(void) = f3;
|
bounds-checking.c | 21 // CHECK: @f3 22 void f3() { function
|
struct-passing.c | 13 T1 __attribute__((pure)) f3(void); 17 void *ps[] = { f0, f1, f2, f3, f4, f5 }; 22 // CHECK: declare void @f3({{.*}} sret)
|
/external/clang/test/Sema/ |
pragma-pack-5.c | 12 char f3; member in struct:s0 19 char f3; member in struct:s1 26 unsigned f3 : 8; member in struct:s2 34 unsigned f3 : 16; member in struct:s3 43 char f3; member in struct:s4 46 extern int check[offsetof(struct s4, f3) == 2 ? 1 : -1];
|
arg-duplicate.c | 3 int f3(y, x, function 13 f3 (1, 1, 2, 3, 4); // expected-warning{{too many arguments}}
|
implicit-builtin-redecl.c | 22 int f3() { function
|
/external/clang/test/ASTMerge/Inputs/ |
function1.c | 4 void f3(void);
|
function2.c | 5 void f3(int);
|
/external/clang/test/Modules/Inputs/ |
linkage-merge-sub.h | 4 static int f3(int);
|
/external/clang/test/SemaCXX/ |
attr-regparm.cpp | 9 void f3(); // expected-note{{previous declaration is here}} 15 void __attribute__((regparm(2))) X0::f3() { } // expected-error{{function declared with regparm(2) attribute was previously declared without the regparm attribute}} function in class:X0
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/exception.unexpected/set.unexpected/ |
set_unexpected.pass.cpp | 19 void f3() function 32 std::set_terminate(f3);
|
/external/clang/test/Analysis/ |
chroot.c | 20 void f3(void) { function
|
/external/clang/test/CXX/class/class.local/ |
p3.cpp | 24 void f3(int a) { // expected-note{{'a' declared here}} function 27 int f() { return a; } // expected-error{{reference to local variable 'a' declared in enclosing function 'f3'}}
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/ |
p10.cpp | 11 mutable T1 f3; // expected-error{{'mutable' cannot be applied to references}} member in struct:s0
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/ |
p11.cpp | 26 template<class T, class U> inline int *f3( U, A<U,T>* p = 0 ); // #1 expected-note{{candidate function [with T = int, U = int]}} 27 template< class U> inline float *f3( U, A<U,U>* p = 0 ); // #2 expected-note{{candidate function [with U = int]}} 30 float *fp = f3<int>( 42, (A<int,int>*)0 ); // Ok, picks #2. 31 f3<int>( 42 ); // expected-error{{call to 'f3' is ambiguous}}
|
/external/clang/test/CodeGenCXX/ |
friend-redecl.cpp | 12 friend bool TryFoo(int, Foo *f3);
|
mangle-variadic-templates.cpp | 40 template<typename ...Types> void f3(const Types *...) {} function 42 template void f3<>(); 44 template void f3<int>(const int*); 46 template void f3<int, float>(const int*, const float*);
|
reinterpret-cast.cpp | 12 unsigned long f3(void *p) { function
|
/external/oprofile/libutil++/tests/ |
glob_filter_tests.cpp | 42 glob_filter f3("", "foo"); 43 check(f3, "foo", false); 44 check(f3, "foo1", true); 45 check(f3, "foo/foo", true);
|