/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
v8_profiler.py | 6 import tempfile namespace 28 dump_file = tempfile.mkstemp()[1]
|
/external/chromium_org/v8/tools/ |
disasm.py | 33 import tempfile namespace 63 tmp_name = tempfile.mktemp(".v8code")
|
/external/mesa3d/src/mesa/ |
SConscript | 470 tempfile = "git_sha1.h.tmp" 471 f = open(tempfile, "w") 474 if not os.path.exists(filename) or not filecmp.cmp(tempfile, filename): 479 os.rename(tempfile, filename)
|
/external/skia/gm/rebaseline_server/ |
imagediffdb_test.py | 15 import tempfile namespace 29 self._temp_dir = tempfile.mkdtemp()
|
imagepair_test.py | 14 import tempfile namespace 28 self._temp_dir = tempfile.mkdtemp()
|
/external/skia/platform_tools/android/tests/ |
gyp_to_android_tests.py | 15 import tempfile namespace 30 self.__tmp_dir = tempfile.mkdtemp()
|
android_framework_gyp_tests.py | 15 import tempfile namespace 31 self.__tmp_dir = tempfile.mkdtemp() 44 f = tempfile.mkstemp(dir=self.__tmp_dir)
|
/external/skia/tools/pyutils/ |
url_utils_test.py | 15 import tempfile namespace 42 tempdir_path = tempfile.mkdtemp()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_bsddb3.py | 7 import tempfile namespace 60 test_all.set_test_path_prefix(os.path.join(tempfile.gettempdir(),
|
test_commands.py | 6 import os, tempfile, re namespace 35 dir = tempfile.mkdtemp()
|
test_threadedtempfile.py | 2 Create and delete FILES_PER_THREAD temp files (via tempfile.TemporaryFile) 4 failures. A failure is a bug in tempfile, and may be due to: 6 + Trying to create more than one tempfile with the same name. 7 + Trying to delete a tempfile that doesn't still exist. 19 import tempfile namespace 38 f = tempfile.TemporaryFile("w+b")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_bsddb3.py | 7 import tempfile namespace 60 test_all.set_test_path_prefix(os.path.join(tempfile.gettempdir(),
|
test_commands.py | 6 import os, tempfile, re namespace 35 dir = tempfile.mkdtemp()
|
test_threadedtempfile.py | 2 Create and delete FILES_PER_THREAD temp files (via tempfile.TemporaryFile) 4 failures. A failure is a bug in tempfile, and may be due to: 6 + Trying to create more than one tempfile with the same name. 7 + Trying to delete a tempfile that doesn't still exist. 19 import tempfile namespace 38 f = tempfile.TemporaryFile("w+b")
|
/dalvik/dx/etc/ |
mainDexClasses | 23 local tempfile="${tempDir}/mainDexClasses-$$.tmp.jar" 24 if [ -e "${tempfile}" ]; then 28 echo "${tempfile}"
|
/external/chromium_org/components/test/data/password_manager/ |
run_tests.py | 10 import tempfile namespace 44 results = tempfile.NamedTemporaryFile( 45 dir=os.path.join(tempfile.gettempdir()), delete=False)
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/ |
make_token_matcher_unittest.py | 30 import tempfile namespace 222 with tempfile.NamedTemporaryFile() as input_file: 223 with tempfile.NamedTemporaryFile() as generated_file:
|
/external/chromium_org/third_party/skia/platform_tools/android/tests/ |
android_framework_gyp_tests.py | 15 import tempfile namespace 31 self.__tmp_dir = tempfile.mkdtemp() 44 f = tempfile.mkstemp(dir=self.__tmp_dir)
|
generate_user_config_tests.py | 16 import tempfile namespace 50 tmp = tempfile.mkdtemp() 76 tmp = tempfile.mkdtemp()
|
makefile_writer_tests.py | 16 import tempfile namespace 128 f = tempfile.TemporaryFile() 138 fd, filename = tempfile.mkstemp() 156 fd, outfile = tempfile.mkstemp() 176 outdir = tempfile.mkdtemp() 185 outdir = tempfile.mkdtemp()
|
/external/chromium_org/v8/tools/testrunner/local/ |
commands.py | 33 import tempfile namespace 133 (fd_out, outname) = tempfile.mkstemp() 134 (fd_err, errname) = tempfile.mkstemp()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
toaiff.py | 15 import tempfile namespace 81 (fd, fname) = tempfile.mkstemp() 104 (fd, temp) = tempfile.mkstemp()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
toaiff.py | 15 import tempfile namespace 81 (fd, fname) = tempfile.mkstemp() 104 (fd, temp) = tempfile.mkstemp()
|
/prebuilts/sdk/tools/ |
mainDexClasses | 23 local tempfile="${tempDir}/mainDexClasses-$$.tmp.jar" 24 if [ -e "${tempfile}" ]; then 28 echo "${tempfile}"
|
/system/extras/verity/ |
build_verity_metadata.py | 6 import tempfile namespace 31 with tempfile.NamedTemporaryFile(suffix='.table') as table_file: 32 with tempfile.NamedTemporaryFile(suffix='.sig') as signature_file:
|