/external/v8/test/mjsunit/regress/ |
regress-1423.js | 34 return f1('literal', true); 37 function f1(x, y) { function
|
regress-2593.js | 47 function f1() { function 55 for (var i = 0; i < 10; i++) f1(); 57 assertEquals(1, f1()); 61 assertEquals(2, f1());
|
regress-365172-3.js | 7 function f1(a) { return {x:a, v:''}; } function 11 a = f1(1);
|
regress-crbug-107996.js | 47 function f1() { function 59 f1();
|
regress-crbug-325225.js | 28 function f1(a) { function 33 f1([f1]);
|
regress-lazy-deopt-inlining.js | 8 function f1(d) { function 15 if (d) %DeoptimizeFunction(f1); 21 f1(false); 22 f1(false); 23 %OptimizeFunctionOnNextCall(f1); 24 assertEquals(3, f1(true));
|
regress-lazy-deopt-inlining2.js | 8 function f1(d) { function 15 if (d) %DeoptimizeFunction(f1); 21 f1(false); 22 f1(false); 23 %OptimizeFunctionOnNextCall(f1); 24 assertEquals(3, f1(true));
|
regress-polymorphic-store.js | 31 o1.f1 = function() { return 10; };
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/alloc.errors/set.new.handler/ |
get_new_handler.pass.cpp | 15 void f1() {} function 21 std::set_new_handler(f1); 22 assert(std::get_new_handler() == f1);
|
set_new_handler.pass.cpp | 15 void f1() {} function 20 assert(std::set_new_handler(f1) == 0); 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 | 16 void f1() {} function 21 std::set_terminate(f1); 22 assert(std::get_terminate() == f1);
|
set_terminate.pass.cpp | 16 void f1() {} function 21 std::set_terminate(f1); 22 assert(std::set_terminate(f2) == f1);
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
spbp.cpp | 11 void f1(int t) function 21 f1(100);
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
spbp.cpp | 11 void f1(int t) function 21 f1(100);
|
/external/clang/test/CXX/temp/temp.spec/temp.inst/ |
p11.cpp | 13 void f1(A<int> x) { x.Allocate(); } function in namespace:test0
|
/external/clang/test/CodeGen/ |
2006-10-30-ArrayCrash.c | 7 short f1[3]; member in struct:S
|
2008-07-31-asm-labels.c | 19 void f1() { function
|
builtin-attributes.c | 11 void f1() { function
|
unreachable.c | 12 int f1(int i) { function
|
variadic-gpfp-x86.c | 4 float f1; member in struct:Bar
|
/external/clang/test/SemaCXX/ |
attr-regparm.cpp | 7 void __attribute__((regparm(3))) f1(); 13 void __attribute__((regparm(3))) X0::f1() { } function in class:X0
|
/external/libcxx/test/std/depr/exception.unexpected/set.unexpected/ |
get_unexpected.pass.cpp | 16 void f1() {} function 30 std::set_unexpected(f1); 31 assert(std::get_unexpected() == f1); 32 // verify f1 was replace with f2
|
set_unexpected.pass.cpp | 16 void f1() {} function 26 std::unexpected_handler old = std::set_unexpected(f1); 29 // verify f1 was replace with f2 30 assert(std::set_unexpected(f2) == f1);
|
/external/v8/test/mjsunit/compiler/ |
globals.js | 69 function f1(x) { glo1 = x; } function 70 f1(42);
|
/external/v8/test/mjsunit/ |
elide-double-hole-check-6.js | 30 function f1(a, i) { function 34 assertEquals(0.5, f1(arr, 0)); 35 assertEquals(0.5, f1(arr, 0)); 36 %OptimizeFunctionOnNextCall(f1); 37 assertEquals(0.5, f1(arr, 0)); 39 assertEquals(2, f1(arr, 1));
|