Searched refs:findfile (Results 1 – 25 of 62) sorted by relevance
123
/external/python/cpython2/Lib/test/ |
D | test_bsddb185.py | 7 from test.test_support import run_unittest, findfile, import_module 20 db = bsddb185.hashopen(findfile("185test.db")) 26 self.assertEqual(whichdb.whichdb(findfile("185test.db")), "bsddb185")
|
D | test_imgfile.py | 5 from test.test_support import verbose, unlink, findfile, import_module 104 uu.decode(findfile('testrgb.uue'), 'test.rgb') 105 uu.decode(findfile('greyrgb.uue'), 'greytest.rgb')
|
D | test_sunaudiodev.py | 1 from test.test_support import findfile, TestFailed, import_module 28 play_sound_file(findfile('audiotest.au'))
|
D | test_imghdr.py | 5 from test.test_support import findfile, TESTFN, unlink, run_unittest 31 cls.testfile = findfile('python.png', subdir='imghdrdata') 40 filename = findfile(filename, subdir='imghdrdata')
|
D | test_linuxaudiodev.py | 4 from test.test_support import findfile, run_unittest 33 path = findfile("audiotest.au")
|
D | test_ossaudiodev.py | 4 from test.test_support import findfile 146 sound_info = read_sound_file(findfile('audiotest.au'))
|
D | test_aifc.py | 1 from test.test_support import (findfile, TESTFN, unlink, captured_stdout, 130 self.f = aifc.open(findfile('Sine-1000Hz-300ms.aif')) 133 non_aifc_file = findfile('pluck-pcm8.wav', subdir='audiodata')
|
D | test_difflib.py | 2 from test.test_support import run_unittest, findfile 199 with open(findfile('test_difflib_expect.html')) as fp:
|
D | test_tokenize.py | 650 fn = test_support.findfile("tokenize_tests" + os.extsep + "txt") 706 fn = test_support.findfile("tokenize_tests" + os.extsep + "txt")
|
/external/python/cpython3/Lib/test/ |
D | test_sndhdr.py | 4 from test.support import findfile 18 filename = findfile(filename, subdir="sndhdrdata") 29 filename = findfile('sndhdr.aifc', subdir="sndhdrdata")
|
D | test_imghdr.py | 7 from test.support import findfile, TESTFN, unlink 35 cls.testfile = findfile('python.png', subdir='imghdrdata') 44 filename = findfile(filename, subdir='imghdrdata') 56 filename = findfile(filename, subdir='imghdrdata') 103 filename = findfile(filename, subdir='imghdrdata')
|
D | test_winsound.py | 106 with open(support.findfile('pluck-pcm8.wav', 114 fn = support.findfile('pluck-pcm8.wav', subdir='audiodata')
|
D | test_dtrace.py | 9 from test.support import findfile, run_unittest 13 return os.path.abspath(findfile(filename, subdir="dtracedata"))
|
D | test_eintr.py | 18 tester = support.findfile("eintr_tester.py", subdir="eintrdata")
|
D | test_ossaudiodev.py | 4 from test.support import findfile 147 sound_info = read_sound_file(findfile('audiotest.au'))
|
D | test_symbol.py | 9 SYMBOL_FILE = support.findfile('symbol.py')
|
D | test_tabnanny.py | 15 findfile, unlink) 322 path = findfile('tabnanny.py')
|
D | test_aifc.py | 1 from test.support import check_no_resource_warning, findfile, TESTFN, unlink 150 f = aifc.open(findfile('Sine-1000Hz-300ms.aif')) 154 non_aifc_file = findfile('pluck-pcm8.wav', subdir='audiodata')
|
D | test_tarfile.py | 35 tarname = support.findfile("testtar.tar") 436 with tarfile.open(support.findfile('recursion.tar')) as tar: 2300 files = [support.findfile('tokenize_tests.txt'), 2301 support.findfile('tokenize_tests-no-coding-cookie-' 2332 zipname = support.findfile('zipdir.zip') 2374 zipname = support.findfile('zipdir.zip') 2381 files = [support.findfile('tokenize_tests.txt'), 2382 support.findfile('tokenize_tests-no-coding-cookie-' 2394 files = [support.findfile('tokenize_tests.txt'), 2395 support.findfile('tokenize_tests-no-coding-cookie-' [all …]
|
/external/python/cpython3/Lib/test/test_tools/ |
D | test_reindent.py | 10 from test.support import findfile 28 bad_coding_path = findfile('bad_coding.py')
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_grep.py | 9 from test.test_support import captured_stdout, findfile 14 __file__ = findfile('idlelib/idle_test') + '/test_grep.py'
|
/external/lua/src/ |
D | loadlib.c | 520 static const char *findfile (lua_State *L, const char *name, in findfile() function 546 filename = findfile(L, name, "path", LUA_LSUBSEP); in searcher_Lua() 580 const char *filename = findfile(L, name, "cpath", LUA_CSUBSEP); in searcher_C() 593 filename = findfile(L, lua_tostring(L, -1), "cpath", LUA_CSUBSEP); in searcher_Croot()
|
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
D | test_images.py | 28 cls.testfile = support.findfile('python.xbm', subdir='imghdrdata') 110 cls.testfile = support.findfile('python.gif', subdir='imghdrdata') 123 testfile = support.findfile('python.' + ext, subdir='imghdrdata') 137 testfile = support.findfile('python.' + ext, subdir='imghdrdata')
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_help_about.py | 8 from test.support import requires, findfile 80 fn = findfile(filename, subdir='idlelib')
|
/external/python/cpython3/Lib/tkinter/test/test_tkinter/ |
D | test_images.py | 27 cls.testfile = support.findfile('python.xbm', subdir='imghdrdata') 109 cls.testfile = support.findfile('python.gif', subdir='imghdrdata') 122 testfile = support.findfile('python.' + ext, subdir='imghdrdata') 136 testfile = support.findfile('python.' + ext, subdir='imghdrdata')
|
123