Home
last modified time | relevance | path

Searched defs:f0 (Results 1 – 25 of 367) sorted by relevance

12345678910>>...15

/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
Dp4-neg.cpp3 template<typename T> void f0(T) { } // expected-note{{previous}} in f0() function
4 template<class U> void f0(U) { } // expected-error{{redefinition}} in f0() function
6 template<int I> void f0() { } // expected-note{{previous}} in f0() function
7 template<int> void f0() { } // expected-error{{redefinition}} in f0() function
12 void f0() { } // expected-note{{previous}} in f0() function
14 void f0() { } // expected-error{{redefinition}} in f0() function
20 typename MetaFun<T*>::type f0(const T&) { while (1) {} } // expected-note{{previous}} in f0() function
22 typename MetaFun<U*>::type f0(const U&) { while (1) {} } // expected-error{{redefinition}} in f0() function
Dp4.cpp5 template<typename T> void f0(T) { } in f0() function
6 template<typename T, typename U> void f0(T) { } in f0() function
7 template<typename T, typename U> void f0(U) { } in f0() function
Dp6.cpp8 template<int X, int Y> void f0(A0<X, Y>) { } // expected-note{{previous}} in f0() function
9 template<int N, int M> void f0(A0<M, N>) { } in f0() function
10 template<int V1, int V2> void f0(A0<V1, V2>) { } // expected-error{{redefinition}} in f0() function
/external/clang/test/CXX/expr/expr.unary/expr.delete/
Dp5.cpp9 void f0(T0 *a) { delete a; } // expected-warning {{deleting pointer to incomplete type}} in f0() function
16 void f0() { T1_A<T1_B> x; } // expected-note {{in instantiation of member function}} in f0() function
21 struct T2_B { void f0(T *a) { delete a; } }; in f0() function
22 struct T2_C { T2_B<T2_A> x; void f0(T2_A *a) { x.f0(a); } }; in f0() function
23 void f0(T2_A *a) { T2_C x; x.f0(a); } in f0() function
30 void f0(T *a) { in f0() function
37 void f0(T3_A *a) { in f0() function
42 void f0(T3_A *a) { T3_C x; x.f0(a); } in f0() function
/external/libcxx/test/std/thread/futures/futures.shared_future/
Dctor_future.pass.cpp27 std::future<T> f0 = p.get_future(); in main() local
34 std::future<T> f0; in main() local
42 std::future<T> f0 = p.get_future(); in main() local
49 std::future<T> f0; in main() local
57 std::future<T> f0 = p.get_future(); in main() local
64 std::future<T> f0; in main() local
Dmove_ctor.pass.cpp27 std::shared_future<T> f0 = p.get_future(); in main() local
34 std::shared_future<T> f0; in main() local
42 std::shared_future<T> f0 = p.get_future(); in main() local
49 std::shared_future<T> f0; in main() local
57 std::shared_future<T> f0 = p.get_future(); in main() local
64 std::shared_future<T> f0; in main() local
Dcopy_assign.pass.cpp30 std::shared_future<T> f0 = p.get_future(); in main() local
41 std::shared_future<T> f0; in main() local
50 std::shared_future<T> f0 = p.get_future(); in main() local
58 std::shared_future<T> f0; in main() local
67 std::shared_future<T> f0 = p.get_future(); in main() local
75 std::shared_future<T> f0; in main() local
Dcopy_ctor.pass.cpp30 std::shared_future<T> f0 = p.get_future(); in main() local
40 std::shared_future<T> f0; in main() local
48 std::shared_future<T> f0 = p.get_future(); in main() local
55 std::shared_future<T> f0; in main() local
63 std::shared_future<T> f0 = p.get_future(); in main() local
70 std::shared_future<T> f0; in main() local
Dmove_assign.pass.cpp27 std::shared_future<T> f0 = p.get_future(); in main() local
35 std::shared_future<T> f0; in main() local
44 std::shared_future<T> f0 = p.get_future(); in main() local
52 std::shared_future<T> f0; in main() local
61 std::shared_future<T> f0 = p.get_future(); in main() local
69 std::shared_future<T> f0; in main() local
/external/libcxx/test/std/thread/futures/futures.unique_future/
Dmove_assign.pass.cpp26 std::future<T> f0 = p.get_future(); in main() local
34 std::future<T> f0; in main() local
43 std::future<T> f0 = p.get_future(); in main() local
51 std::future<T> f0; in main() local
60 std::future<T> f0 = p.get_future(); in main() local
68 std::future<T> f0; in main() local
Dshare.pass.cpp27 std::future<T> f0 = p.get_future(); in main() local
35 std::future<T> f0; in main() local
44 std::future<T> f0 = p.get_future(); in main() local
52 std::future<T> f0; in main() local
61 std::future<T> f0 = p.get_future(); in main() local
69 std::future<T> f0; in main() local
Dmove_ctor.pass.cpp26 std::future<T> f0 = p.get_future(); in main() local
33 std::future<T> f0; in main() local
41 std::future<T> f0 = p.get_future(); in main() local
48 std::future<T> f0; in main() local
56 std::future<T> f0 = p.get_future(); in main() local
63 std::future<T> f0; in main() local
Dcopy_assign.fail.cpp26 std::future<int> f0, f; in main() local
30 std::future<int &> f0, f; in main() local
34 std::future<void> f0, f; in main() local
Dcopy_ctor.fail.cpp26 std::future<int> f0; in main() local
30 std::future<int &> f0; in main() local
34 std::future<void> f0; in main() local
/external/clang/test/Sema/
Dpragma-align-mac68k.c15 char f0; member
24 char f0; member
33 char f0; member
42 char f0; member
51 unsigned f0 : 9; member
72 char f0; member
79 char f0[3]; member
87 char f0; member
93 char f0; member
106 char f0; in f12() member
Dpragma-pack-2.c10 char f0; member
17 char f0; member
25 char f0; member
30 char f0; member
39 char f0; member
44 char f0; member
53 char f0; in f() member
55 int f0; in f() member
Dpragma-align-packed.c6 char f0; member
13 char f0; member
20 char f0; member
27 struct s3_0 { unsigned char f0; unsigned int f1; }; member
30 struct s3_1 { unsigned char f0; unsigned int f1; }; member
/external/clang/test/CodeGen/
Darm-arguments.c7 char f0(void) { in f0() function
13 struct s1 { char f0; }; member
18 struct s2 { short f0; }; member
23 struct s3 { int f0; }; member
28 struct s4 { struct s4_0 { int f0; } f0; }; member
34 struct s5 { struct { } f0; int f1; }; member
40 struct s6 { int f0[1]; }; member
45 struct s7 { struct { int : 0; } f0; }; member
51 struct s8 { struct { int : 0; } f0[1]; }; member
56 struct s9 { int f0; int : 0; }; member
[all …]
Dbitfield-promote.c3 long long f0(void) { in f0() function
4 struct { unsigned f0 : 32; } x = { 18 }; in f0() member
11 struct { unsigned f0 : 31; } x = { 18 }; in f1() member
18 struct { unsigned f0 ; } x = { 18 }; in f2() member
/external/clang/test/CodeGenCXX/
Dmangle-address-space.cpp4 void f0(char *p) { } in f0() function
6 void f0(char __attribute__((address_space(1))) *p) { } in f0() function
12 void f0(OpaqueTypePtr) { } in f0() function
/external/clang/test/SemaTemplate/
Dcanonical-expr-type-0x.cpp7 void f0(T x, decltype(f(N, x)) y) { } // expected-note{{previous}} in f0() function
10 void f0(T x, decltype((f)(N, x)) y) { } in f0() function
13 void f0(U u, decltype(f(M, u))) { } // expected-error{{redefinition}} in f0() function
Dvalue-dependent-null-pointer-constant.cpp5 const char *f0(bool Cond) { in f0() function
19 template<unsigned I> int f0() { in f0() function
/external/clang/test/Parser/
Dmethod-def-in-class.m5 -(id) f0 { // expected-error {{expected ';' after method prototype}} method
11 - (id) f0 { // expected-error {{expected ';' after method prototype}} method
/external/clang/test/CodeGenObjC/
Dproperty-agrr-getter.m4 unsigned f0; field
8 - (s0) f0; method
12 -(s0) f0{ while (1) {} } method
Druntime-fns.m11 -(void) f0 { method
19 void f0(id x) { function

12345678910>>...15