Home
last modified time | relevance | path

Searched refs:testfn (Results 1 – 17 of 17) sorted by relevance

/external/llvm-project/llvm/test/CodeGen/AArch64/GlobalISel/
Dirtranslator-block-order.ll5 ; CHECK-LABEL: testfn
7 define void @testfn() {
/external/python/cpython2/Lib/email/mime/
Daudio.py34 for testfn in sndhdr.tests:
35 res = testfn(hdr, fakefile)
/external/python/cpython3/Lib/email/mime/
Daudio.py34 for testfn in sndhdr.tests:
35 res = testfn(hdr, fakefile)
/external/rust/crates/bencher/
Dlib.rs174 pub testfn: TestFn, field
436 match t.testfn.padding() { in run_tests_console()
510 try!(callback(TeWait(b.desc.clone(), b.testfn.padding()))); in run_tests()
536 let TestDescAndFn {desc, testfn} = test; in filter_tests()
539 testfn: testfn, in filter_tests()
559 let TestDescAndFn {desc, testfn} = test; in run_test()
565 match testfn { in run_test()
Dmacros.rs17 testfn: TestFn::StaticBenchFn($function),
/external/llvm-project/llvm/test/CodeGen/AMDGPU/
Dfneg-fold-legalize-dag-increase-insts.ll8 define { double, double } @testfn(double %arg, double %arg1, double %arg2) {
9 ; CHECK-LABEL: testfn:
/external/llvm-project/llvm/test/CodeGen/X86/
Dmerge-vector-stores-scale-idx-crash.ll4 ; CHECK-LABEL: testfn
6 define void @testfn(i32* nocapture %p) {
/external/rust/crates/idna/tests/
Dtests.rs12 testfn: run, in main()
/external/llvm-project/llvm/test/CodeGen/AArch64/
Darm64-fp.ll38 define { double, double } @testfn(double %x, double %y) #0 {
39 ; CHECK-LABEL: testfn:
/external/flatbuffers/tests/
Dgo_test.go333 testfn func() bool
385 if !t.testfn() {
392 if !t.testfn() {
399 if !t.testfn() {
413 if !t.testfn() {
421 if !t.testfn() {
444 if !t.testfn() {
1680 testfn func() bool
1754 if !t.testfn() {
1761 if !t.testfn() {
[all …]
/external/llvm-project/llvm/test/Transforms/PruneEH/
Dmusttail.ll6 define void @testfn() {
/external/python/cpython2/Lib/test/
Dtest_import.py315 testfn = script_helper.make_script('', TESTFN, textwrap.dedent("""\
323 script_helper.assert_python_ok(testfn)
325 unlink(testfn)
Dtest_multiprocessing.py335 def _test_sys_exit(cls, reason, testfn): argument
336 sys.stderr = open(testfn, 'w')
344 testfn = support.TESTFN
345 self.addCleanup(support.unlink, testfn)
348 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
354 with open(testfn, 'r') as f:
/external/python/cpython3/Lib/test/
D_test_multiprocessing.py820 testfn = test.support.TESTFN
821 self.addCleanup(test.support.unlink, testfn)
822 proc = self.Process(target=self._test_stderr_flush, args=(testfn,))
825 with open(testfn, 'r') as f:
833 def _test_stderr_flush(cls, testfn): argument
834 fd = os.open(testfn, os.O_WRONLY | os.O_CREAT | os.O_EXCL)
840 def _test_sys_exit(cls, reason, testfn): argument
841 fd = os.open(testfn, os.O_WRONLY | os.O_CREAT | os.O_EXCL)
850 testfn = test.support.TESTFN
851 self.addCleanup(test.support.unlink, testfn)
[all …]
/external/crosvm/disk/src/qcow/
Dmod.rs1831 fn with_basic_file<F>(header: &[u8], mut testfn: F) in with_basic_file()
1835 testfn(basic_file(header)); // File closed when the function exits. in with_basic_file()
1838 fn with_default_file<F>(file_size: u64, mut testfn: F) in with_default_file()
1845 testfn(qcow_file); // File closed when the function exits. in with_default_file()
/external/OpenCL-CTS/test_conformance/spir/
Dmain.cpp119 typedef bool (*testfn)(cl_device_id device, cl_uint size_t_width, const char *folder); typedef
6614 const testfn test_function;
/external/python/cpython3/Lib/test/test_import/
D__init__.py354 testfn = script_helper.make_script('', TESTFN, textwrap.dedent("""\
361 script_helper.assert_python_ok(testfn)