Searched refs:f0 (Results 51 - 75 of 348) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dattr-noreturn.cpp21 void f0() __attribute__((__noreturn__));
23 void f2() { f1(f0); }
27 void (*fp)() = f0;
28 void (*fp1)() __attribute__((noreturn)) = f0;
32 void f0(int) __attribute__((__noreturn__));
35 void (*fp)() = f0;
36 void (*fp1)() __attribute__((noreturn)) = f0;
45 f3(f0); // okay
H A Dnew-delete-predefined-decl-2.cpp5 void f0(int *ptr) { function
/external/v8/test/mjsunit/regress/
H A Dregress-78270.js31 function g(f0) {
32 var f0 = (object instanceof encodeURI)('foo');
H A Dregress-1423.js33 function f0() { function
63 for (var i = 0; i < 5; ++i) f0();
64 %OptimizeFunctionOnNextCall(f0);
65 assertEquals(1, f0());
/external/v8/test/mjsunit/compiler/
H A Doptimized-function-calls.js57 function f0() { function
78 return f4(f3(f2(f1(f0()),f0()),f1(f0()),f0()),f2(f1(f0()),f0()),f1(f0()),f0())
79 + f4(f0(),f
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
H A Dp6.cpp9 explicit void f0(); // expected-error {{'explicit' can only be applied to a constructor or conversion function}}
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.funcaddr/
H A Dp1.cpp4 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/CodeGen/
H A Dbitfield-assign.c17 int f0 : 2; member in struct:s0
24 void f0(void) { function
26 if ((s.f0 = 3) != -1) g0();
42 s.f0 += 3;
H A Dbuiltins-arm.c4 void *f0() function
H A Dcleanup-stack.c9 static void f0(struct s0 *p) { function
17 struct s0 x __attribute__((cleanup(f0))) = { &var, 2 };
18 struct s0 y __attribute__((cleanup(f0))) = { &var, 3 };
20 struct s0 y __attribute__((cleanup(f0))) = { &var, 4 };
H A Dprivate-extern.c8 int f0(void) { function
H A Dbitfield-2.c24 int f0 : 24;
31 return a0->f0;
34 return (a0->f0 = 1);
37 return (a0->f0 += 1);
46 res ^= g0.f0;
48 res ^= g0.f0;
77 signed f0 : 10;
101 res ^= g1.f0 ^ g1.f1;
103 res ^= g1.f0 ^ g1.f1;
125 unsigned long long f0
157 long long f0 : 32; member in struct:s3
194 unsigned f0 : 16; member in struct:s4
225 unsigned f0 : 2; member in struct:s5
257 _Bool f0 : 2; member in struct:s6
306 int f0 : 5; member in struct:s7
319 char f0 : 4; member in struct:s8
356 unsigned f0 : 7; member in struct:s9
[all...]
/external/clang/test/Coverage/
H A Dhtml-diagnostics.c11 void f0(int x) { function
/external/clang/test/Frontend/
H A Dwarning-mapping-5.c7 int f0(int x, unsigned y) { function
/external/clang/test/Index/Inputs/
H A Dremap-complete-to.c1 int f0(int *pointer1, float *pointer2) { function
/external/clang/test/Modules/
H A Dlookup.cpp12 f0(&i);
13 f0(&f);
16 ::f0(&i);
17 ::f0(&f);
33 // CHECK-PRINT: int *f0(int *);
34 // CHECK-PRINT: float *f0(float *);
/external/clang/test/Sema/
H A Dalign-arm-apcs.c3 struct s0 { double f0; int f1; }; member in struct:s0
H A Dpragma-pack-2.c9 char f0; member in struct:s0
16 char f0; member in struct:s1
24 char f0; member in struct:s3_0
29 char f0; member in struct:s3_1
38 char f0; member in struct:s4_0
43 char f0; member in struct:s4_1
52 char f0; member in struct:s5_0
54 int f0; member in struct:s5_0::s2_4_0
H A Dpragma-pack-3.c23 char f0; member in struct:s0
31 char f0; member in struct:s1
/external/v8/test/mjsunit/
H A Dcall.js28 function f0() { function
32 assertTrue(this === f0.call(), "1");
34 assertTrue(this === f0.call(this), "w");
35 assertTrue(this === f0.call(this, 1), "w");
36 assertTrue(this === f0.call(this, 1, 2), "w");
38 assertTrue(this === f0.call(null), "3a");
39 assertTrue(this === f0.call(null, 1), "3b");
40 assertTrue(this === f0.call(null, 1, 2), "3c");
42 assertTrue(this === f0.call(void 0), "4a");
43 assertTrue(this === f0
[all...]
/external/clang/test/CXX/temp/temp.spec/temp.inst/
H A Dp11.cpp5 template<typename T> unsigned f0() { function in namespace:test0
10 = f0<T>()) // expected-note {{in instantiation}}
9 Allocate(unsigned Alignment = f0<T>()) argument
/external/clang/test/PCH/
H A Dfunctions.h6 int f0(int x, int y, ...);
/external/clang/test/SemaTemplate/
H A Dfunction-template-specialization.cpp3 template<int N> void f0(int (&array)[N]);
6 template<> void f0(int (&array)[1]);
10 f0(iarr1);
14 template<> void f0(char (&array)[1]); // expected-error{{no function template matches}}
15 template<> void f0<2>(int (&array)[2]) { } function
39 template <typename T> bool f0(T &t1);
40 template <> bool f0<float>(float &t1);
42 template <> bool PR5833::f0<float>(float &t1) {} function in class:PR5833
/external/clang/test/ASTMerge/Inputs/
H A Dfunction2.c2 void f0(Int);
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
H A Dp11.cpp5 void f0(int a, function

Completed in 478 milliseconds

1234567891011>>