HomeSort by relevance Sort by last modified time
    Searched refs:testfn (Results 1 - 25 of 26) sorted by null

1 2

  /external/valgrind/none/tests/amd64/
tm1.c 34 void testfn ( void* arg ) function
40 long long int ok = transactionally_apply ( testfn, NULL );
  /toolchain/binutils/binutils-2.27/gold/testsuite/
debug_msg.cc 41 int testfn(Foo x) function
75 testfn(5);
76 testfn(4.0);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-undefined/
undefined.exp 24 set testfn "undefined function"
30 untested $testfn
38 unresolved $testfn
79 checkund $mf $testfn
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/mime/
audio.py 35 for testfn in sndhdr.tests:
36 res = testfn(hdr, fakefile)
  /external/python/cpython2/Lib/email/mime/
audio.py 35 for testfn in sndhdr.tests:
36 res = testfn(hdr, fakefile)
  /external/python/cpython3/Lib/email/mime/
audio.py 35 for testfn in sndhdr.tests:
36 res = testfn(hdr, fakefile)
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/mime/
audio.py 35 for testfn in sndhdr.tests:
36 res = testfn(hdr, fakefile)
  /prebuilts/gdb/linux-x86/lib/python2.7/email/mime/
audio.py 35 for testfn in sndhdr.tests:
36 res = testfn(hdr, fakefile)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
audio.py 35 for testfn in sndhdr.tests:
36 res = testfn(hdr, fakefile)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
audio.py 35 for testfn in sndhdr.tests:
36 res = testfn(hdr, fakefile)
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
ext_test.go 700 func testBasic(t *testing.T, testfn func(*testing.T, func(func([]byte))), opcode ...byte) {
701 testfn(t, concat3(basicPrefixes, fixed(opcode...), enum8bit))
707 testfn(t, concat3(basicPrefixes, fixed(opcode...), enum16bit))
718 testfn(t, concat(fixed(op1...), enum16bit))
722 func testBasicREX(t *testing.T, testfn func(*testing.T, func(func([]byte))), opcode ...byte) {
723 testfn(t, filter(concat4(basicPrefixes, rexPrefixes, fixed(opcode...), enum8bit), isValidREX))
729 testfn(t, filter(concat4(basicPrefixes, rexPrefixes, fixed(opcode...), enum16bit), isValidREX))
740 testfn(t, filter(concat3(rexPrefixes, fixed(op1...), enum16bit), isValidREX))
749 func testPrefix(t *testing.T, testfn func(*testing.T, func(func([]byte)))) {
751 testfn(t, concat(manyPrefixes, enum8bit)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
ext_test.go 700 func testBasic(t *testing.T, testfn func(*testing.T, func(func([]byte))), opcode ...byte) {
701 testfn(t, concat3(basicPrefixes, fixed(opcode...), enum8bit))
707 testfn(t, concat3(basicPrefixes, fixed(opcode...), enum16bit))
718 testfn(t, concat(fixed(op1...), enum16bit))
722 func testBasicREX(t *testing.T, testfn func(*testing.T, func(func([]byte))), opcode ...byte) {
723 testfn(t, filter(concat4(basicPrefixes, rexPrefixes, fixed(opcode...), enum8bit), isValidREX))
729 testfn(t, filter(concat4(basicPrefixes, rexPrefixes, fixed(opcode...), enum16bit), isValidREX))
740 testfn(t, filter(concat3(rexPrefixes, fixed(op1...), enum16bit), isValidREX))
749 func testPrefix(t *testing.T, testfn func(*testing.T, func(func([]byte)))) {
751 testfn(t, concat(manyPrefixes, enum8bit)
    [all...]
  /external/flatbuffers/tests/
go_test.go 310 testfn func() bool
351 if !t.testfn() {
358 if !t.testfn() {
365 if !t.testfn() {
379 if !t.testfn() {
400 if !t.testfn() {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_import.py 9 from test.test_support import (unlink, TESTFN, unload, run_unittest, rmtree,
26 unload(TESTFN)
47 source = TESTFN + ext
48 pyo = TESTFN + os.extsep + "pyo"
50 pyc = TESTFN + "$py.class"
52 pyc = TESTFN + os.extsep + "pyc"
63 mod = __import__(TESTFN)
81 unload(TESTFN)
99 fname = TESTFN + os.extsep + "py"
103 __import__(TESTFN)
    [all...]
  /external/python/cpython2/Lib/test/
test_import.py 14 from test.test_support import (unlink, TESTFN, unload, run_unittest, rmtree,
42 unload(TESTFN)
63 source = TESTFN + ext
64 pyo = TESTFN + os.extsep + "pyo"
66 pyc = TESTFN + "$py.class"
68 pyc = TESTFN + os.extsep + "pyc"
79 mod = __import__(TESTFN)
98 unload(TESTFN)
119 fname = TESTFN + os.extsep + "py"
123 __import__(TESTFN)
    [all...]
test_multiprocessing.py 328 def _test_sys_exit(cls, reason, testfn):
329 sys.stderr = open(testfn, 'w')
337 testfn = test_support.TESTFN
338 self.addCleanup(test_support.unlink, testfn)
341 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
347 with open(testfn, 'r') as f:
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_import.py 14 from test.test_support import (unlink, TESTFN, unload, run_unittest, rmtree,
42 unload(TESTFN)
63 source = TESTFN + ext
64 pyo = TESTFN + os.extsep + "pyo"
66 pyc = TESTFN + "$py.class"
68 pyc = TESTFN + os.extsep + "pyc"
79 mod = __import__(TESTFN)
98 unload(TESTFN)
119 fname = TESTFN + os.extsep + "py"
123 __import__(TESTFN)
    [all...]
test_multiprocessing.py 330 def _test_sys_exit(cls, reason, testfn):
331 sys.stderr = open(testfn, 'w')
339 testfn = test_support.TESTFN
340 self.addCleanup(test_support.unlink, testfn)
343 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
349 with open(testfn, 'r') as f:
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_import.py 14 from test.test_support import (unlink, TESTFN, unload, run_unittest, rmtree,
42 unload(TESTFN)
63 source = TESTFN + ext
64 pyo = TESTFN + os.extsep + "pyo"
66 pyc = TESTFN + "$py.class"
68 pyc = TESTFN + os.extsep + "pyc"
79 mod = __import__(TESTFN)
98 unload(TESTFN)
119 fname = TESTFN + os.extsep + "py"
123 __import__(TESTFN)
    [all...]
test_multiprocessing.py 330 def _test_sys_exit(cls, reason, testfn):
331 sys.stderr = open(testfn, 'w')
339 testfn = test_support.TESTFN
340 self.addCleanup(test_support.unlink, testfn)
343 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
349 with open(testfn, 'r') as f:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_import.py 14 from test.test_support import (unlink, TESTFN, unload, run_unittest, rmtree,
42 unload(TESTFN)
63 source = TESTFN + ext
64 pyo = TESTFN + os.extsep + "pyo"
66 pyc = TESTFN + "$py.class"
68 pyc = TESTFN + os.extsep + "pyc"
79 mod = __import__(TESTFN)
98 unload(TESTFN)
119 fname = TESTFN + os.extsep + "py"
123 __import__(TESTFN)
    [all...]
test_multiprocessing.py 330 def _test_sys_exit(cls, reason, testfn):
331 sys.stderr = open(testfn, 'w')
339 testfn = test_support.TESTFN
340 self.addCleanup(test_support.unlink, testfn)
343 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
349 with open(testfn, 'r') as f:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_import.py 14 from test.test_support import (unlink, TESTFN, unload, run_unittest, rmtree,
42 unload(TESTFN)
63 source = TESTFN + ext
64 pyo = TESTFN + os.extsep + "pyo"
66 pyc = TESTFN + "$py.class"
68 pyc = TESTFN + os.extsep + "pyc"
79 mod = __import__(TESTFN)
98 unload(TESTFN)
119 fname = TESTFN + os.extsep + "py"
123 __import__(TESTFN)
    [all...]
test_multiprocessing.py 330 def _test_sys_exit(cls, reason, testfn):
331 sys.stderr = open(testfn, 'w')
339 testfn = test_support.TESTFN
340 self.addCleanup(test_support.unlink, testfn)
343 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
349 with open(testfn, 'r') as f:
    [all...]
  /external/python/cpython3/Lib/test/
_test_multiprocessing.py 444 testfn = test.support.TESTFN
445 self.addCleanup(test.support.unlink, testfn)
446 proc = self.Process(target=self._test_stderr_flush, args=(testfn,))
449 with open(testfn, 'r') as f:
457 def _test_stderr_flush(cls, testfn):
458 fd = os.open(testfn, os.O_WRONLY | os.O_CREAT | os.O_EXCL)
464 def _test_sys_exit(cls, reason, testfn):
465 fd = os.open(testfn, os.O_WRONLY | os.O_CREAT | os.O_EXCL)
474 testfn = test.support.TESTF
    [all...]

Completed in 780 milliseconds

1 2