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

123456789

/external/clang/test/CodeGen/
H A Dredef-ext-inline.c5 int f3 (void) {return f1();} function
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 Dstruct-passing.c13 T1 __attribute__((pure)) f3(void);
17 void *ps[] = { f0, f1, f2, f3, f4, f5 };
22 // CHECK: declare void @f3({{.*}} sret)
/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/ASTMerge/Inputs/
H A Dfunction1.c4 void f3(void);
H A Dfunction2.c5 void f3(int);
/external/clang/test/Sema/
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/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.cpp10 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*);
H A Dmangle-extern-local.cpp27 static int f3() { function in struct:N::S
35 int anchorf3() { return S::f3(); }
/external/clang/test/SemaCXX/
H A Daddress-of-temporary.cpp11 void f3() { (void)&(X)1; } // expected-warning{{taking the address of a temporary object}} function
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 with regparm(2) attribute was previously declared without the regparm attribute}} function in class:X0
H A Dattr-noreturn.cpp42 void f3(noreturn_fp); // expected-note{{candidate function}}
45 f3(f0); // okay
46 f3(f2); // expected-error{{no matching function for call}}
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
H A Dp6-0x.cpp10 static void f3() &&; // expected-error{{ref-qualifier '&&' is only allowed on non-static member functions, member function pointers, and typedefs of function types}}
17 func_type_rvalue f3; // expected-error{{nonmember function cannot have a ref-qualifier '&&'}} variable
/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 enclosed 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);
/external/clang/test/Index/
H A Dcomplete-exprs.c15 void f3(const char*, ...) __attribute__((sentinel(0)));
19 f3(str, NULL);
57 // CHECK-CC6: FunctionDecl:{ResultType void}{TypedText f3}{LeftParen (}{Placeholder const char *, ...}{Text , NULL}{RightParen )} (50)
66 // CHECK-CC7: FunctionDecl:{ResultType void}{TypedText f3}{LeftParen (}{Placeholder const char *, ...}{Text , NULL}{RightParen )} (50)

Completed in 2326 milliseconds

123456789