HomeSort by relevance Sort by last modified time
    Searched defs:f2 (Results 51 - 75 of 561) sorted by null

1 23 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.assign/
nonmember_swap.pass.cpp 34 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');
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/alloc.errors/set.new.handler/
get_new_handler.pass.cpp 16 void f2() {} function
23 std::set_new_handler(f2);
24 assert(std::get_new_handler() == f2);
set_new_handler.pass.cpp 16 void f2() {} function
21 assert(std::set_new_handler(f2) == f1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/exception.terminate/set.terminate/
get_terminate.pass.cpp 17 void f2() {} function
23 std::set_terminate(f2);
24 assert(std::get_terminate() == f2);
set_terminate.pass.cpp 17 void f2() {} function
22 assert(std::set_terminate(f2) == f1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.once/thread.once.onceflag/
assign.fail.cpp 21 std::once_flag f2; local
22 f2 = f;
  /external/chromium_org/v8/test/mjsunit/compiler/
globals.js 74 function f2(x) { glo2 = x; } function
75 f2(42);
osr-alignment.js 41 function f2() { function
73 assertEquals(500009500000, f2());
  /external/chromium_org/v8/test/webkit/
toString-for-var-decl.js 29 var f2 = function () { for (var j = 1; j < 10; ++j) {} } function
36 shouldBe("unevalf(eval(unevalf(f2)))", "unevalf(f2)");
39 shouldBe("unevalf(f2) != unevalf(f3)", "true");
  /external/clang/test/CodeGen/
2006-10-30-ArrayCrash.c 8 unsigned int f2 : 1; member in struct:S
15 if (A->f2)
2008-07-31-asm-labels.c 31 int f2() { function
blocks.c 16 struct s0 f2(struct s0 a0) { function
bounds-checking.c 10 // CHECK: @f2
11 void f2() { function
builtin-attributes.c 16 char* f2(char* a, char* b) { function
unreachable.c 19 int f2(int i) { function
  /external/clang/test/CodeGenCXX/
cxx11-special-members.cpp 22 void f2(B &x, B &y) { function
  /external/clang/test/SemaCXX/
attr-regparm.cpp 8 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
  /external/v8/test/mjsunit/compiler/
globals.js 74 function f2(x) { glo2 = x; } function
75 f2(42);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/exception.unexpected/set.unexpected/
get_unexpected.pass.cpp 17 void f2() {} function
32 // verify f1 was replace with f2
33 std::set_unexpected(f2);
34 assert(std::get_unexpected() == f2);
set_unexpected.pass.cpp 17 void f2() {} function
29 // verify f1 was replace with f2
30 assert(std::set_unexpected(f2) == f1);
  /ndk/tests/device/test-stlport_shared-exception/jni/
omit-frame-pointer2.cpp 10 void f2 (void) function
21 f2 ();
  /ndk/tests/device/test-stlport_static-exception/jni/
omit-frame-pointer2.cpp 10 void f2 (void) function
21 f2 ();
  /system/extras/tests/bionic/libc/bionic/
test_relocs.c 13 int f1, f2, expect1 = 1, expect2 = 2; local
16 f2 = func2();
19 printf( "func2() returns %d: %s\n", f2, (f2 == expect2) ? "OK" : "FAIL" );
21 if (f1 != expect1 || f2 != expect2)
  /external/chromium_org/v8/test/mjsunit/
call.js 63 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/chromium_org/v8/test/mjsunit/regress/
regress-convert-hole2.js 43 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]));

Completed in 179 milliseconds

1 23 4 5 6 7 8 91011>>