Searched refs:f2 (Results 101 - 125 of 831) sorted by relevance

1234567891011>>

/external/libcxx/test/utilities/function.objects/arithmetic.operations/
H A Dminus.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(3,2) == 1);
28 assert(f2(3.0, 2) == 1);
29 assert(f2(3, 2.5) == 0.5);
H A Dmodulus.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(36, 8) == 4);
28 assert(f2(36L, 8) == 4);
29 assert(f2(36, 8L) == 4);
H A Dmultiplies.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(3,2) == 6);
28 assert(f2(3.0, 2) == 6);
29 assert(f2(3, 2.5) == 7.5); // exact in binary
H A Dnegate.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(36) == -36);
28 assert(f2(36L) == -36);
29 assert(f2(36.0) == -36);
H A Dplus.pass.cpp26 const F2 f2 = F2(); local
27 assert(f2(3,2) == 5);
28 assert(f2(3.0, 2) == 5);
29 assert(f2(3, 2.5) == 5.5);
/external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
H A Dcopy_assign.pass.cpp73 std::function<int(int)> f2; local
74 f2 = f;
77 assert(f2.target<A>());
78 assert(f2.target<int(*)(int)>() == 0);
87 std::function<int(int)> f2; local
88 f2 = f;
90 assert(f2.target<int(*)(int)>());
91 assert(f2.target<A>() == 0);
99 std::function<int(int)> f2; local
100 f2
113 std::function<int(int)> f2; local
[all...]
/external/libcxx/test/utilities/function.objects/bitwise.operations/
H A Dbit_not.pass.cpp30 const F2 f2 = F2(); local
31 assert((f2(0xEA95) & 0xFFFF ) == 0x156A);
32 assert((f2(0xEA95L) & 0xFFFF ) == 0x156A);
33 assert((f2(0x58D3) & 0xFFFF ) == 0xA72C);
34 assert((f2(0x58D3L) & 0xFFFF ) == 0xA72C);
35 assert((f2(0) & 0xFFFF ) == 0xFFFF);
36 assert((f2(0L) & 0xFFFF ) == 0xFFFF);
37 assert((f2(0xFFFF) & 0xFFFF ) == 0);
38 assert((f2(0xFFFFL) & 0xFFFF ) == 0);
/external/chromium_org/v8/test/mjsunit/bugs/
H A Dbug-2337.js33 var f2 = eval("(function f2() { return 43; })"); variable
51 f2 = void 0;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1419.js35 var f2 = function () {}; function
40 f2.bind(foo);
H A Dregress-1423.js38 return f2(x, y);
41 // Because it's strict, f2 has an environment containing only the constants
47 function f2(x, y) { function
H A Dregress-2326.js48 var f2 = makeClosure();
54 assertSame(2, f2(2, 100000));
H A Dregress-365172-3.js8 function f2(a) { return {x:{v:a}, v:''}; } function
12 a.__defineGetter__('v', function() { gc(); return f2(this); });
H A Dregress-lazy-deopt-inlining.js9 return 1 + f2(f3(d));
12 function f2(v) { return v; } function
H A Dregress-lazy-deopt-inlining2.js9 return 1 + f2(1, f3(d), d);
12 function f2(v0, v1, v2) { return v1; } function
/external/clang/test/CodeGenCXX/
H A Dsparcv9-abi.cpp15 void f2(struct notpod);
25 f2(p2);
/external/clang/test/SemaCXX/
H A Dattr-regparm.cpp8 void __attribute__((regparm(3))) f2(); // expected-note{{previous declaration is here}}
14 void __attribute__((regparm(2))) X0::f2() { } // expected-error{{function declared with regparm(2) attribute was previously declared with the regparm(3) attribute}} function in class:X0
H A Dfunction-type-qual.cpp8 cfn f2; // expected-error {{non-member function of type 'cfn' (aka 'void () const') cannot have 'const' qualifier}} variable
12 cfn f2; member in class:C
/external/libcxx/test/depr/exception.unexpected/set.unexpected/
H A Dset_unexpected.pass.cpp17 void f2() {} function
29 // verify f1 was replace with f2
30 assert(std::set_unexpected(f2) == f1);
/external/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/
H A Dmember_swap.pass.cpp32 std::filebuf f2; local
33 f2.swap(f);
35 assert(f2.is_open());
36 assert(f2.sgetc() == '2');
47 std::wfilebuf f2; local
48 f2.swap(f);
50 assert(f2.is_open());
51 assert(f2.sgetc() == L'2');
H A Dmove_assign.pass.cpp33 std::filebuf f2; local
34 f2 = move(f);
36 assert(f2.is_open());
37 assert(f2.sgetc() == '2');
48 std::wfilebuf f2; local
49 f2 = move(f);
51 assert(f2.is_open());
52 assert(f2.sgetc() == L'2');
H A Dnonmember_swap.pass.cpp34 std::filebuf f2; local
35 swap(f2, f);
37 assert(f2.is_open());
38 assert(f2.sgetc() == '2');
49 std::wfilebuf f2; local
50 swap(f2, f);
52 assert(f2.is_open());
53 assert(f2.sgetc() == L'2');
/external/lldb/test/functionalities/dead-strip/
H A Dmain.c13 int f2 (char *s);
27 // We want f2 to start on line 30, this should get stripped
28 int f2 (char *s) function
30 return printf("f2: %s\n", s);
/external/llvm/test/MC/ELF/
H A Dcomdat-dup-group-name.s23 // CHECK: Name: f2
39 .section .foo,"axG",@progbits,f2,comdat
/external/llvm/utils/
H A DGetRepositoryPath18 svn info | grep '^URL:' | cut -d: -f2-
20 git svn info | grep 'URL:' | cut -d: -f2-
/external/strace/linux/
H A Ddummy_check.sh3 grep '^#define' dummy.h | cut -f2 | \

Completed in 345 milliseconds

1234567891011>>