/external/v8/test/mjsunit/es6/ |
classof-proxy.js | 7 function test_function(o) { function 19 assertFalse(test_function(non_callable)); 20 assertTrue(test_function(callable)); 21 assertTrue(test_function(constructable)); 23 %OptimizeFunctionOnNextCall(test_function); 25 assertFalse(test_function(non_callable)); 26 assertTrue(test_function(callable)); 27 assertTrue(test_function(constructable));
|
/external/llvm/test/Transforms/Inline/ |
externally_available.ll | 2 ; RUN: not grep test_function %t 6 ; test_function should not be emitted to the .s file. 7 define available_externally i32 @test_function() { 13 %A = call i32 @test_function()
|
/external/llvm/test/CodeGen/NVPTX/ |
tuple-literal.ll | 3 define ptx_device void @test_function({i8, i8}*) {
|
/external/llvm/test/CodeGen/Generic/ |
externally_available.ll | 3 ; test_function should not be emitted to the .s file. 4 define available_externally i32 @test_function() {
|
/external/llvm/test/Transforms/GlobalDCE/ |
externally_available.ll | 3 ; test_function should not be emitted to the .s file. 4 define available_externally i32 @test_function() {
|
/external/v8/test/mjsunit/regress/ |
regress-491536.js | 9 function test_function() { eval(source); } function 10 assertDoesNotThrow(test_function);
|
/external/compiler-rt/test/asan/TestCases/Windows/ |
dll_intercept_memchr.cc | 8 int test_function() { function 16 // CHECK-NEXT: test_function {{.*}}dll_intercept_memchr.cc:[[@LINE-5]] 18 // CHECK-NEXT: test_function {{.*}}dll_intercept_memchr.cc
|
dll_malloc_uaf.cc | 8 int test_function() { function 14 // CHECK-NEXT: test_function {{.*}}dll_malloc_uaf.cc:[[@LINE-3]] 20 // CHECK-NEXT: test_function {{.*}}dll_malloc_uaf.cc:[[@LINE-10]] 25 // CHECK-NEXT: test_function {{.*}}dll_malloc_uaf.cc:[[@LINE-16]]
|
dll_null_deref.cc | 13 int test_function() { function 15 // CHECK: {{ #1 0x.* in test_function .*\dll_null_deref.cc:}}[[@LINE-1]]
|
dll_intercept_memcpy.cc | 13 int test_function() { function 27 // CHECK-NEXT: test_function {{.*}}dll_intercept_memcpy.cc:[[@LINE-4]] 29 // CHECK-NEXT: test_function {{.*}}dll_intercept_memcpy.cc
|
dll_intercept_memcpy_indirect.cc | 14 int test_function() { function 29 // CHECK-NEXT: test_function {{.*}}dll_intercept_memcpy_indirect.cc:[[@LINE-5]] 31 // CHECK-NEXT: test_function {{.*}}dll_intercept_memcpy_indirect.cc
|
dll_intercept_memset.cc | 13 int test_function() { function 27 // CHECK-NEXT: test_function {{.*}}dll_intercept_memset.cc:[[@LINE-4]] 29 // CHECK-NEXT: test_function {{.*}}dll_intercept_memset.cc
|
dll_intercept_strlen.cc | 9 int test_function() { function 23 // CHECK-NEXT: {{#1 .* test_function .*}}dll_intercept_strlen.cc:[[@LINE-5]] 26 // CHECK-NEXT: test_function {{.*}}dll_intercept_strlen.cc:
|
dll_malloc_left_oob.cc | 7 int test_function() { function 12 // CHECK-NEXT: test_function {{.*}}dll_malloc_left_oob.cc:[[@LINE-3]] 18 // CHECK-NEXT: test_function {{.*}}dll_malloc_left_oob.cc:[[@LINE-10]]
|
dll_operator_array_new_left_oob.cc | 6 int test_function() { function 11 // CHECK-NEXT: test_function {{.*}}dll_operator_array_new_left_oob.cc:[[@LINE-3]] 20 // CHECK-NEXT: test_function {{.*}}dll_operator_array_new_left_oob.cc:[[@LINE-13]]
|
dll_poison_unpoison.cc | 16 int test_function() { function 28 // CHECK-NEXT: test_function{{.*}}\dll_poison_unpoison.cc:[[@LINE-4]] 32 // CHECK-NEXT: test_function{{.*}}\dll_poison_unpoison.cc
|
dll_host.cc | 42 typedef int (*test_function)(); typedef 43 test_function gf = (test_function)GetProcAddress(h, "test_function"); 45 printf("Could not locate test_function in the DLL!\n");
|
dll_operator_array_new_with_dtor_left_oob.cc | 11 int test_function() { function 16 // CHECK-NEXT: test_function {{.*}}dll_operator_array_new_with_dtor_left_oob.cc:[[@LINE-3]] 28 // CHECK-NEXT: test_function {{.*}}dll_operator_array_new_with_dtor_left_oob.cc:[[@LINE-16]]
|
dll_noreturn.cc | 15 // CHECK-NEXT: test_function{{.*}}dll_noreturn.cc 25 int test_function() { function
|
dll_stack_use_after_return.cc | 15 int test_function() { function 20 // CHECK-NEXT: test_function{{.*}}dll_stack_use_after_return.cc:[[@LINE-3]]
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/ |
function.pass.cpp | 29 void test_function() function 39 test_function<void ()>(); 40 test_function<void (int)>(); 41 test_function<int (double)>(); 42 test_function<int (double, char)>();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/ |
function.pass.cpp | 29 void test_function() function 39 test_function<void ()>(); 40 test_function<void (int)>(); 41 test_function<int (double)>(); 42 test_function<int (double, char)>();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/ |
function.pass.cpp | 38 void test_function() function 48 test_function<void ()>(); 49 test_function<void (int)>(); 50 test_function<int (double)>(); 51 test_function<int (double, char)>();
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
unit_test_suite.hpp | 28 #define BOOST_TEST_CASE( test_function ) \ 29 boost::unit_test::make_test_case( boost::unit_test::callback0<>(test_function), BOOST_TEST_STRINGIZE( test_function ) ) 30 #define BOOST_CLASS_TEST_CASE( test_function, tc_instance ) \ 31 boost::unit_test::make_test_case((test_function), BOOST_TEST_STRINGIZE( test_function ), tc_instance )
|
/external/libchrome/sandbox/linux/seccomp-bpf/ |
bpf_tester_compatibility_delegate.h | 17 // function pointer to a test in |test_function|. 26 explicit BPFTesterCompatibilityDelegate(TestFunction test_function) 27 : aux_(), test_function_(test_function) {}
|