HomeSort by relevance Sort by last modified time
    Searched refs:f0 (Results 101 - 125 of 574) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/test/CodeGen/
inline2.c 4 // CHECK-GNU89: define i32 @f0()
5 // CHECK-C99: define i32 @f0()
6 int f0(void);
7 int f0(void) { return 0; } function
60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
2008-07-31-asm-labels.c 13 void f0() { function
2009-12-07-BitFieldAlignment.c 11 void f0(struct S *a) { function
PR2743-reference-missing-static.c 10 void f0() { e0(); } function
_Bool-conversion.c 3 // CHECK: define i32 @f0()
8 int f0() { return f0_0((void*) 0x2); } function
assign.c 5 // CHECK: define void @f0()
12 void f0() { function
builtins-arm.c 4 void *f0() function
attr-availability.c 17 // CHECK-10_4: declare extern_weak void @f0
18 // CHECK-10_5: declare void @f0
19 // CHECK-10_6: declare void @f0
20 void f0() __attribute__((availability(macosx,introduced=10.5)));
28 f0();
available-externally-suppress.c 6 inline void f0(int y) { x = y; } function
9 // CHECK: declare void @f0(i32)
11 f0(17);
  /external/clang/test/SemaTemplate/
explicit-instantiation.cpp 5 template typedef void f0; // expected-error{{explicit instantiation of typedef}} typedef
14 T f0(T x) { function in struct:X0
17 T* f0(T*, T*) { return T(); } // expected-warning{{expression which evaluates to zero treated as a null pointer constant of type 'int *'}} function in struct:X0
19 template <typename U> T f0(T, U) { return T(); } // expected-note {{candidate template ignored: could not match 'int (int, U)' against 'int (int) const'}} \ function in struct:X0
34 template int X0<int>::f0(int);
35 template int* X0<int>::f0(int*, int*); // expected-note{{in instantiation of member function 'X0<int>::f0' requested here}}
36 template int X0<int>::f0(int, float);
38 template int X0<int>::f0(int) const; // expected-error{{does not refer}}
39 template int* X0<int>::f0(int*, float*); // expected-error{{does not refer}
    [all...]
value-dependent-null-pointer-constant.cpp 5 const char *f0(bool Cond) { function in struct:X0
19 template<unsigned I> int f0() { function
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p6.cpp 9 explicit void f0(); // expected-error {{'explicit' can only be applied to a constructor or conversion function}}
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
basic.cpp 3 void f0() { function
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p5.cpp 5 void f0(int *ip = &global_f); // expected-error{{cannot initialize}} \
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p4.cpp 3 template<typename T> void f0(T); // expected-note{{here}}
4 template void f0(int); // expected-error{{explicit instantiation of undefined function template}}
19 template<> void f0(long); // expected-note{{previous template specialization is here}}
20 template void f0(long); // expected-warning{{explicit instantiation of 'f0<long>' that occurs after an explicit specialization will be ignored}}
  /external/clang/test/CodeGenCXX/
DynArrayInit.cpp 11 char f0() { function
  /external/clang/test/Index/
complete-unterminated.c 10 void f0(const char*);
  /external/clang/test/PCH/
multiple_decls.c 8 void f0(char c) { function
  /external/clang/test/Sema/
pointer-subtract-compat.c 9 void f0(void (*fp)(void)) { function
attr-used.c 12 static void __attribute__((used)) f0(void) { function
20 static void __attribute__((used)) f0(void);
  /external/clang/test/SemaCXX/
increment-decrement.cpp 12 void f0(int e) { function
attr-regparm.cpp 6 void __attribute__((regparm(3))) f0();
12 void X0::f0() { } function in class:X0
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.spec.mfunc/
p1-neg.cpp 8 void f0();
22 void A<T*, 2>::f0() { } function in class:A
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 13 template <typename T> int f0(void *, const T&); // expected-note{{candidate template ignored: substitution failure}}
17 int i = f0(0, e); // expected-warning{{template argument uses unnamed type}}
19 f0(0, vla); // expected-error{{no matching function for call to 'f0'}}
23 template <typename R, typename A1> void f0(R (*)(A1));
34 f0( // expected-warning{{template argument uses unnamed type}}
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p3-0x.cpp 9 template<typename T> X<T> f0(T&&);
18 X<int> xi0 = f0(prvalue<int>());
19 X<int> xi1 = f0(xvalue<int>());
20 X<int&> xi2 = f0(lvalue<int>());
21 X<Y> xy0 = f0(prvalue<Y>());
22 X<Y> xy1 = f0(xvalue<Y>());
23 X<Y&> xy2 = f0(lvalue<Y>());

Completed in 575 milliseconds

1 2 3 45 6 7 8 91011>>