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

1 2 34 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.unique_future/
share.pass.cpp 24 std::future<T> f0 = p.get_future(); local
25 std::shared_future<T> f = std::move(f0.share());
26 assert(!f0.valid());
31 std::future<T> f0; local
32 std::shared_future<T> f = std::move(f0.share());
33 assert(!f0.valid());
39 std::future<T> f0 = p.get_future(); local
40 std::shared_future<T> f = std::move(f0.share());
41 assert(!f0.valid());
46 std::future<T> f0; local
54 std::future<T> f0 = p.get_future(); local
61 std::future<T> f0; local
    [all...]
  /external/clang/test/CodeGen/
arm-arguments.c 5 // APCS-GNU: define signext i8 @f0()
6 // AAPCS: define arm_aapcscc signext i8 @f0()
7 char f0(void) { function
13 struct s1 { char f0; }; member in struct:s1
18 struct s2 { short f0; }; member in struct:s2
23 struct s3 { int f0; }; member in struct:s3
28 struct s4 { struct s4_0 { int f0; } f0; }; member in struct:s4
34 struct s5 { struct { } f0; int f1; }; member in struct:s5
40 struct s6 { int f0[1]; } member in struct:s6
45 struct s7 { struct { int : 0; } f0; }; member in struct:s7
51 struct s8 { struct { int : 0; } f0[1]; }; member in struct:s8
56 struct s9 { int f0; int : 0; }; member in struct:s9
61 struct s10 { int f0; int : 0; int : 0; }; member in struct:s10
67 struct s11 { int : 0; int f0; }; member in struct:s11
72 union u12 { char f0; short f1; int f2; }; member in union:u12
80 struct s13 { float f0; }; member in struct:s13
86 union u14 { float f0; }; member in union:u14
99 struct s17 { short f0 : 13; char f1 : 4; }; member in struct:s17
104 struct s18 { short f0; char f1 : 4; }; member in struct:s18
110 struct s19 { int f0; struct s8 f1; }; member in struct:s19
116 struct s20 { struct s8 f1; int f0; }; member in struct:s20
121 struct s21 { struct {} f1; int f0 : 4; }; member in struct:s21
145 struct s28 { _Complex char f0; }; member in struct:s28
150 struct s29 { _Complex short f0; }; member in struct:s29
155 struct s30 { _Complex int f0; }; member in struct:s30
    [all...]
bitfield-2.c 19 int f0 : 24;
26 return a0->f0;
29 return (a0->f0 = 1);
32 return (a0->f0 += 1);
41 res ^= g0.f0;
43 res ^= g0.f0;
63 signed f0 : 10;
87 res ^= g1.f0 ^ g1.f1;
89 res ^= g1.f0 ^ g1.f1;
108 unsigned long long f0 : 3
140 long long f0 : 32; member in struct:s3
177 unsigned f0 : 16; member in struct:s4
208 unsigned f0 : 2; member in struct:s5
240 _Bool f0 : 2; member in struct:s6
282 int f0 : 5; member in struct:s7
295 char f0 : 4; member in struct:s8
332 unsigned f0 : 7; member in struct:s9
    [all...]
alignof.c 10 int f0() { function
attr-used.c 3 // RUN: grep '@llvm.used = .*@f0' %t
9 static void __attribute__((used)) f0(void) { function
x86_32-arguments-realign.c 4 // CHECK: define void @f0(%struct.s0* byval align 4)
8 void f0(struct s0 a0) { function
aarch64-arguments.c 6 // PCS: define i8 @f0(i16 %a)
7 char f0(short a) { function
12 struct s1 { char f0; }; member in struct:s1
16 struct s2 { short f0; }; member in struct:s2
20 struct s3 { int f0; }; member in struct:s3
24 struct s4 { struct s4_0 { int f0; } f0; }; member in struct:s4
28 struct s5 { struct { } f0; int f1; }; member in struct:s5
32 struct s6 { int f0[1]; }; member in struct:s6
36 struct s7 { struct { int : 0; } f0; }; member in struct:s7
40 struct s8 { struct { int : 0; } f0[1]; }; member in struct:s8
44 struct s9 { long f0; int : 0; }; member in struct:s9
48 struct s10 { long f0; int : 0; int : 0; }; member in struct:s10
52 struct s11 { int : 0; long f0; }; member in struct:s11
56 union u12 { char f0; short f1; int f2; long f3; }; member in union:u12
60 struct s13 { float f0; }; member in struct:s13
64 union u14 { float f0; }; member in union:u14
74 struct s17 { short f0 : 13; char f1 : 4; }; member in struct:s17
78 struct s18 { short f0; char f1 : 4; }; member in struct:s18
82 struct s19 { long f0; struct s8 f1; }; member in struct:s19
86 struct s20 { struct s8 f1; long f0; }; member in struct:s20
90 struct s21 { struct {} f1; long f0 : 4; }; member in struct:s21
99 struct s24 { _Complex char f0; }; member in struct:s24
103 struct s25 { _Complex short f0; }; member in struct:s25
107 struct s26 { _Complex int f0; }; member in struct:s26
111 struct s27 { _Complex long f0; }; member in struct:s27
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p11.cpp 5 template<typename T> unsigned f0() { function in namespace:test0
10 = f0<T>()) // expected-note {{in instantiation}}
  /external/clang/test/PCH/
functions.h 6 int f0(int x, int y, ...);
  /external/clang/test/Sema/
pragma-pack-2.c 10 char f0; member in struct:s0
17 char f0; member in struct:s1
25 char f0; member in struct:s3_0
30 char f0; member in struct:s3_1
39 char f0; member in struct:s4_0
44 char f0; member in struct:s4_1
53 char f0; member in struct:s5_0
55 int f0; member in struct:s5_0::s2_4_0
pragma-pack-3.c 24 char f0; member in struct:s0
32 char f0; member in struct:s1
pragma-align-mac68k.c 15 char f0; member in struct:s1
18 extern int a1_0[offsetof(struct s1, f0) == 0 ? 1 : -1];
24 char f0; member in struct:s2
27 extern int a2_0[offsetof(struct s2, f0) == 0 ? 1 : -1];
33 char f0; member in struct:s3
36 extern int a3_0[offsetof(struct s3, f0) == 0 ? 1 : -1];
42 char f0; member in struct:s4
45 extern int a4_0[offsetof(struct s4, f0) == 0 ? 1 : -1];
51 unsigned f0 : 9; member in struct:s5
72 char f0; member in struct:s8
79 char f0[3]; member in struct:s9
87 char f0; member in struct:s10
93 char f0; member in struct:s11
106 char f0; member in struct:s12
    [all...]
pragma-align-packed.c 6 char f0; member in struct:s0
13 char f0; member in struct:s1
20 char f0; member in struct:s2
27 struct s3_0 { unsigned char f0; unsigned int f1; }; member in struct:s3_0
30 struct s3_1 { unsigned char f0; unsigned int f1; }; member in struct:s3_1
  /external/clang/test/SemaTemplate/
function-template-specialization.cpp 4 void f0(int (&array)[N]); // expected-note {{candidate template ignored: could not match 'int' against 'char'}}
7 template<> void f0(int (&array)[1]);
11 f0(iarr1);
15 template<> void f0(char (&array)[1]); // expected-error{{no function template matches}}
16 template<> void f0<2>(int (&array)[2]) { } function
40 template <typename T> bool f0(T &t1);
41 template <> bool f0<float>(float &t1);
43 template <> bool PR5833::f0<float>(float &t1) {} function in class:PR5833
default-arguments-cxx0x.cpp 6 void f0();
9 void f0();
12 f0(); // okay!
instantiate-call.cpp 6 int& f0(X0);
10 char& f0(char);
15 Result result = f0(t);
27 Result &result = f0(t); // expected-error {{undeclared identifier}} \
36 short& f0(char); // expected-note {{should be declared prior to the call site}}
41 Result &result = f0(t);
  /external/clang/test/ASTMerge/Inputs/
function2.c 2 void f0(Int);
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p11.cpp 5 void f0(int a, function
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.funcaddr/
p1.cpp 4 T f0(T, int);
7 int (*f0a)(int, int) = f0;
8 int (*f0b)(int, int) = &f0;
9 float (*f0c)(float, int) = &f0;
  /external/clang/test/CodeGenObjC/
attr-strong.c 7 void f0(void) { function
  /external/clang/test/Modules/Inputs/
linkage-merge-sub.h 1 extern int f0(int);
  /external/llvm/test/MC/COFF/
align-nops.s 5 f0: label
  /external/llvm/test/MC/ELF/
align-nops.s 5 f0: label
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p2.cpp 6 template<typename T> A<T> f0(T* ptr);
10 A<int> a0 = f0(arr0);
12 A<const int> a1 = f0(arr1);
20 A<int(int, int)> a0 = f0(g0);
21 A<float(float)> a1 = f0(g1);
  /external/clang/test/CXX/temp/temp.res/temp.dep.res/temp.point/
p1.cpp 13 int& f0(A&);
19 Result r = f0(t);
31 char& f0(B&);

Completed in 501 milliseconds

1 2 34 5 6 7 8 91011>>