HomeSort by relevance Sort by last modified time
    Searched refs:f3 (Results 1 - 25 of 240) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/CodeGen/
redef-ext-inline.c 5 int f3 (void) {return f1();} function
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;
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/ASTMerge/Inputs/
function1.c 4 void f3(void);
function2.c 5 void f3(int);
  /external/clang/test/Sema/
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/SemaCXX/
address-of-temporary.cpp 11 void f3() { (void)&(X)1; } // expected-warning{{taking the address of a temporary object}} function
attr-regparm.cpp 9 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
attr-noreturn.cpp 42 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/
p6-0x.cpp 10 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/
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 enclosed 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 10 unsigned long f3(void *p) { function
mangle-extern-local.cpp 27 static int f3() { function in struct:N::S
35 int anchorf3() { return S::f3(); }
  /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);
  /external/clang/test/Index/
complete-exprs.c 15 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)
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p9-0x.cpp 62 void test_explicit_spec_extension_funcparms(int (*f3)(int, float, double)) {
63 accept_function_ptr(f3);
64 accept_function_ptr<int>(f3);
65 accept_function_ptr<int, int>(f3);
66 accept_function_ptr<int, int, float>(f3);
67 accept_function_ptr<int, int, float, double>(f3);

Completed in 724 milliseconds

1 2 3 4 5 6 7 8 910