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

1234567891011>>

/external/clang/test/SemaCXX/
H A Dfunction-pointer-arguments.cpp5 int f2(const int, int);
13 int(*g4)(int, int) = f2;
14 int(*g5)(const int, int) = f2;
15 int(*g6)(volatile int, int) = f2;
39 int (*g8)(int, char) = f2;
H A Dderived-to-base-ambig.cpp20 void g(E2* e2, F2* f2) { argument
23 o2 = f2; // expected-error{{ambiguous conversion from derived class 'F2' to base class 'Object2':}} expected-error{{assigning to 'Object2 *' from incompatible type 'F2 *'}}
31 void overload_call(F2* f2) { argument
32 overload_okay(f2);
/external/libcxx/test/utilities/function.objects/comparisons/
H A Dequal_to.pass.cpp27 const F2 f2 = F2(); local
28 assert(f2(36, 36));
29 assert(!f2(36, 6));
30 assert(f2(36, 36.0));
31 assert(f2(36.0, 36L));
/external/libcxx/test/utilities/function.objects/logical.operations/
H A Dlogical_not.pass.cpp27 const F2 f2 = F2(); local
28 assert(!f2(36));
29 assert( f2(0));
30 assert(!f2(36L));
31 assert( f2(0L));
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-convert-hole2.js43 function f2(b, a1, a2) { function
54 f2(true, [1.4,1.8,,1.9], [1.4,1.8,,1.9]);
55 f2(true, [1.4,1.8,,1.9], [1.4,1.8,,1.9]);
56 f2(false, [1.4,1.8,,1.9], [1.4,1.8,,1.9]);
57 f2(false, [1.4,1.8,,1.9], [1.4,1.8,,1.9]);
58 %OptimizeFunctionOnNextCall(f2);
59 assertEquals("testundefinedNaN", f2(false, [,1.8,,1.9], [,1.9,,1.9]));
H A Dregress-crbug-336148.js42 function f2() { return 1 || 2; }; function
48 assertEquals(1, f2());
55 [f1, f2, f3, f4].forEach(function(f) { %OptimizeFunctionOnNextCall(f); });
/external/valgrind/main/none/tests/s390x/
H A Dbfp-1.c7 volatile float f1, f2; variable
32 register float r2 asm("f2") = f2;
37 printf("%f + %f = %f\n", f1, f2, r1);
43 register float r2 asm("f2") = f2;
48 printf("%f - %f = %f\n", f1, f2, r1);
54 register float r2 asm("f2") = f2;
59 printf("%f * %f = %f\n", f1, f2, r
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dregexp-string-methods.js41 var f2 = new RegExp("[g]", "i");
42 assertEquals(["G"], f2.exec("G"));
43 assertTrue(f2.ignoreCase);
/external/clang/test/CodeGen/
H A Dinline2.c14 // CHECK-GNU89-LABEL: define i32 @f2()
15 // CHECK-C99-LABEL: define i32 @f2()
16 int f2(void);
17 inline int f2(void) { return 0; } function
65 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
H A Dmicrosoft-call-conv-x64.c4 void __stdcall f2(void);
12 f2();
13 // CHECK: call void @f2()
18 void (__stdcall *pf2)(void) = f2;
H A D2008-07-31-asm-labels.c31 int f2() { function
H A DPR2743-reference-missing-static.c16 void f2() { e2(); } function
H A Darray.c8 void f2() { function
H A Dvariadic-gpfp-x86.c5 float f2; member in struct:Bar
/external/clang/test/Sema/
H A Dwarn-missing-prototypes.c32 int f2(int);
33 int f2();
35 int f2(int x) { return x; } function
H A Dimplicit-builtin-redecl.c16 void f2() { function
/external/libcxx/test/depr/exception.unexpected/set.unexpected/
H A Dget_unexpected.pass.cpp17 void f2() {} function
32 // verify f1 was replace with f2
33 std::set_unexpected(f2);
34 assert(std::get_unexpected() == f2);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp10.cpp9 mutable int &f2; // expected-error{{'mutable' cannot be applied to references}} member in struct:s0
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
H A Dp3.cpp5 void (*f2)(int = 17) // expected-error {{default arguments can only be specified}}
H A Dp4.cpp34 // FIXME: make these "f2"s into "f"s, then fix our scoping issues
35 void f2(int, int);
36 void f2(int, int = 7);
38 f2(3); // OK, calls f(3, 7)
53 f2(6); // okay
/external/clang/test/CodeGenCXX/
H A Dint64_uint64.cpp17 void f2(uint64_t a) {} function
H A Dreinterpret-cast.cpp8 unsigned long f2() { function
/external/clang/test/PCH/Inputs/
H A Dchain-selectors2.h3 -(void)f2;
/external/clang/test/Parser/
H A Dpragma-fp-contract.c9 void f2(void) { function
/external/libcxx/test/utilities/function.objects/arithmetic.operations/
H A Ddivides.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(36, 4) == 9);
28 assert(f2(36.0, 4) == 9);
29 assert(f2(18, 4.0) == 4.5); // exact in binary

Completed in 698 milliseconds

1234567891011>>