/external/skia/tools/ |
test_pdfs.py | 17 import tempfile namespace
|
/pdk/apps/CameraITS/pymodules/its/ |
objects.py | 20 import tempfile namespace
|
/build/tools/releasetools/ |
img_from_target_files | 43 import tempfile namespace 62 img = tempfile.NamedTemporaryFile() 107 img = tempfile.NamedTemporaryFile() 120 img = tempfile.NamedTemporaryFile() 149 temp_dir = tempfile.mkdtemp() 152 img = tempfile.NamedTemporaryFile() 181 temp_dir = tempfile.mkdtemp() 184 img = tempfile.NamedTemporaryFile()
|
/external/chromium_org/build/android/gyp/ |
create_standalone_apk.py | 15 import tempfile namespace 22 with tempfile.NamedTemporaryFile(suffix='.zip') as intermediate_file:
|
finalize_apk.py | 14 import tempfile namespace 57 with tempfile.NamedTemporaryFile() as intermediate_file:
|
/external/chromium_org/build/ |
extract_from_cab.py | 12 import tempfile namespace 34 temp_dir = tempfile.mkdtemp(dir=output_dir)
|
/external/chromium_org/chrome/test/functional/ |
test_clean_exit.py | 10 import tempfile namespace 26 fd, self._strace_log = tempfile.mkstemp()
|
/external/chromium_org/chrome/tools/ |
webforms_aggregator_tests.py | 7 import tempfile namespace 21 self.url_file = tempfile.NamedTemporaryFile(suffix='.txt', delete=False)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
run-blink-httpd | 40 import tempfile namespace 63 tempfile.gettempdir(),
|
/external/chromium_org/third_party/mesa/src/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/chromium_org/tools/compile_test/ |
compile_test.py | 18 import tempfile namespace 37 tmpdir = tempfile.mkdtemp()
|
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/ |
writer_unittest_common.py | 10 import tempfile namespace 43 tmp_dir_name = tempfile.gettempdir()
|
/external/chromium_org/tools/perf/measurements/ |
loading_profile.py | 6 import tempfile namespace 36 os.path.join(tempfile.mkdtemp(),
|
/external/chromium_org/tools/perf/ |
record_android_profile.py | 8 import tempfile namespace 20 output_file = os.path.join(tempfile.mkdtemp(), options.profiler)
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
netlog_profiler.py | 5 import tempfile namespace 26 dump_file = tempfile.mkstemp()[1]
|
v8_profiler.py | 6 import tempfile namespace 27 dump_file = tempfile.mkstemp()[1]
|
/external/chromium_org/v8/tools/ |
disasm.py | 33 import tempfile namespace 62 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/v8/tools/ |
disasm.py | 33 import tempfile namespace 62 tmp_name = tempfile.mktemp(".v8code")
|
/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")
|