Searched refs:f3 (Results 1 - 25 of 281) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dredef-ext-inline.c5 int f3 (void) {return f1();} function
H A Dppc64-extend.c10 int f3(void) { return 0; } function
11 // CHECK: define signext i32 @f3() [[NUW]]
H A Dinline2.c19 // 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()
H A Dalways_inline.c19 int f3(void) { return f2(); } function
H A Dattr-availability.c11 // 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
H A Dmicrosoft-call-conv.c5 void __thiscall f3(void);
18 f3();
19 // CHECK: call x86_thiscallcc void @f3()
25 void (__thiscall *pf3)(void) = f3;
H A Dbounds-checking.c21 // CHECK: @f3
22 void f3() { function
/external/v8/test/mjsunit/
H A Dbinary-operation-overwrite.js31 function f3() { return (1.2 || 3.4) + 5.6; } function
35 assertTrue(f3() === f3());
/external/clang/test/Sema/
H A Dpragma-pack-5.c12 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];
H A Darg-duplicate.c3 int f3(y, x, function
13 f3 (1, 1, 2, 3, 4); // expected-warning{{too many arguments}}
H A Dimplicit-builtin-redecl.c22 int f3() { function
/external/clang/test/ASTMerge/Inputs/
H A Dfunction1.c4 void f3(void);
H A Dfunction2.c5 void f3(int);
/external/clang/test/Modules/Inputs/
H A Dlinkage-merge-sub.h4 static int f3(int);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp10.cpp11 mutable T1 f3; // expected-error{{'mutable' cannot be applied to references}} member in struct:s0
/external/clang/test/CodeGenCXX/
H A Dreinterpret-cast.cpp12 unsigned long f3(void *p) { function
H A Dfriend-redecl.cpp12 friend bool TryFoo(int, Foo *f3);
H A Dmangle-variadic-templates.cpp40 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*);
/external/v8/test/mjsunit/regress/
H A Dregress-2071.js48 function f3() {
51 return f3;
65 function f3() {
68 return f3;
H A Dregress-1423.js49 if (f3(x, 'other-literal')) {
59 function f3(x, y) { function
/external/clang/test/SemaCXX/
H A Dattr-regparm.cpp9 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
/external/clang/test/Analysis/
H A Dchroot.c20 void f3(void) { function
/external/clang/test/CXX/class/class.local/
H A Dp3.cpp24 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/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
H A Dp11.cpp26 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/oprofile/libutil++/tests/
H A Dglob_filter_tests.cpp42 glob_filter f3("", "foo");
43 check(f3, "foo", false);
44 check(f3, "foo1", true);
45 check(f3, "foo/foo", true);

Completed in 850 milliseconds

1234567891011>>