Searched refs:f2 (Results 76 - 100 of 481) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2007-09-28-PackedUnionMember.c6 unsigned long f2; member in struct:H
20 unsigned long f2; member in struct:E
H A Dstruct-passing.c12 T1 __attribute__((const)) f2(void);
17 void *ps[] = { f0, f1, f2, f3, f4, f5 };
21 // CHECK: declare void @f2({{.*}} sret)
H A Dstdcall-fastcall.c4 void __attribute__((stdcall)) f2(void);
13 f2();
14 // CHECK: call x86_stdcallcc void @f2()
24 void (__attribute__((stdcall)) *pf2)(void) = f2;
/external/clang/test/Sema/
H A Dpragma-pack-5.c10 unsigned f2 : 32; member in struct:s0
41 unsigned f2 : 8; member in struct:s4
H A Dattr-deprecated-message.c16 INT1 f2(void); // expected-warning {{'INT1' is deprecated: Please avoid INT1}}
29 int i = f2();
/external/clang/test/SemaCXX/
H A Ddecltype.cpp13 float &f2(int const*);
16 float &fr = f2(AC().a);
H A Danonymous-union.cpp13 float f2; member in union:X::__anon4625::__anon4626
36 f2 = f;
44 f2 = 0; // expected-error{{read-only variable is not assignable}}
51 x.f2 = x.f;
95 float f2; member in union:__anon4632
98 f2 = 0.0;
161 void f2() { function
H A Dlinkage-spec.cpp45 int f2(char *) function
52 int f2(int) function
54 return f2((char *)0);
/external/v8/test/mjsunit/compiler/
H A Dvariables.js43 function f2() { var x = 2; return x; } function
44 assertEquals(2, f2());
H A Doptimized-function-calls.js65 function f2(a, b) { function
78 return f4(f3(f2(f1(f0()),f0()),f1(f0()),f0()),f2(f1(f0()),f0()),f1(f0()),f0())
79 + f4(f0(),f1(f0()),f2(f1(f0()),f0()),f3(f2(f1(f0()),f0()),f1(f0()),f0()));
/external/libffi/testsuite/libffi.call/
H A Dstruct7.c12 float f2; member in struct:__anon7332
19 ts.f2 += 1;
55 ts7_arg.f2 = 55.5f;
59 printf ("%g\n", ts7_arg.f2);
65 printf ("%g\n", ts7_result->f2);
69 CHECK(ts7_result->f2 == 55.5f + 1);
H A Dstruct8.c12 float f2; member in struct:__anon7333
20 ts.f2 += 1;
57 ts8_arg.f2 = 55.5f;
62 printf ("%g\n", ts8_arg.f2);
69 printf ("%g\n", ts8_result->f2);
74 CHECK(ts8_result->f2 == 55.5f + 1);
/external/v8/test/mjsunit/
H A Dcall.js63 function f2(a, b) { function
70 assertEquals(3, f2.call(x));
71 assertEquals(14, f2.call({i:12}, 'i'));
72 assertEquals(42, f2.call(x, 'n', 41));
73 assertEquals(87, f2.call(x, 'n', 86, 1));
74 assertEquals(99, f2.call(x, 'n', 98, 1, 2));
/external/valgrind/main/coregrind/
H A Dm_vki.c107 vki_sigaction_fromK_t f2; local
112 vg_assert(sizeof(f1.sa_handler) == sizeof(f2.ksa_handler));
113 vg_assert(sizeof(f1.sa_mask) == sizeof(f2.sa_mask));
114 vg_assert(sizeof(f1.sa_flags) == sizeof(f2.sa_flags));
120 vg_assert(offsetof(f1.sa_handler) == offsetof(f2.ksa_handler));
121 vg_assert(offsetof(f1.sa_mask) == offsetof(f2.sa_mask));
122 vg_assert(offsetof(f1.sa_flags) == offsetof(f2.sa_flags));
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
H A Dp8.cpp9 void f2();
26 f2();
27 ::f2();
28 X::f2();
29 Y::f2();
/external/clang/test/SemaTemplate/
H A Dtemplate-id-expr.cpp22 void f2(U) { function in struct:X0
28 xi.f2(f);
55 static void f2(U);
69 Y0::template f2<U>(0);
70 Y0::template f2(0);
H A Dinjected-class-name.cpp33 void f2(const X0&); // expected-note{{here}}
34 void f2(X0&);
35 void f2(const ::X0<type, U_type2>&); // expected-error{{redecl}}
H A Dtemp_func_order.cpp29 int &f2(T);
32 float &f2(A<T, U>);
35 double &f2(A<T, T>);
38 int &ir = f2(i);
39 float &fr = f2(aif);
40 double &dr = f2(aii);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
H A Dregress-85880.js50 function f2() function
52 return f2.arguments;
55 actual = (f2() == null);
60 actual = (f2(0) == null);
84 f2();
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
H A Dp6-0x.cpp5 void f2() const volatile &&; // expected-error {{non-member function cannot have 'const volatile &&' qualifier}}
10 static void f2() &; // expected-error{{static member function cannot have '&' qualifier}}
41 func_type_lvalue f2; // expected-error{{non-member function of type 'func_type_lvalue' (aka 'void () &') cannot have '&' qualifier}}
/external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
H A Dp3-0x.cpp5 int&& f2();
10 float &l = g(f2());
16 float &l2 = g2(f2());
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.partial/
H A Dp11.cpp16 T* f2(int, typename identity<T>::type = 0);
18 T& f2(U, typename identity<T>::type = 0);
21 int* ip = f2<int>(1);
/external/clang/test/CXX/class/class.mem/
H A Dp2.cpp48 void f2() throw(A2<T>);
53 void f2() throw(A2<T>);
/external/clang/test/CXX/special/class.copy/
H A Dp33-0x.cpp45 void f2(int i) { function in namespace:PR10142
56 template void f2<X>(int); // expected-note{{in instantiation of function template specialization 'PR10142::f2<PR10142::X>' requested here}}
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dext-blocks.cpp24 int f2(Args ...args) {
30 template int f2(const char*, int, float, double);

Completed in 669 milliseconds

1234567891011>>