/external/chromium_org/build/ |
extract_from_cab.py | 12 import tempfile namespace 34 temp_dir = tempfile.mkdtemp(dir=output_dir)
|
/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/remoting/tools/ |
run_webapp_unittest.py | 13 import tempfile namespace 52 command.append('--user-data-dir=' + 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/third_party/skia/gm/rebaseline_server/ |
imagediffdb_test.py | 14 import tempfile namespace 28 self.temp_dir = tempfile.mkdtemp()
|
imagepair_test.py | 14 import tempfile namespace 29 self.temp_dir = tempfile.mkdtemp()
|
/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/ |
screenshot_unittest.py | 7 import tempfile namespace 19 self._options.png_outdir = tempfile.mkdtemp('_png_test')
|
skpicture_printer_unittest.py | 6 import tempfile namespace 17 self._options.skp_outdir = tempfile.mkdtemp('_skp_test')
|
/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/relocation_packer/test_data/ |
generate_elf_file_unittest_relocs.py | 18 import tempfile namespace 26 with tempfile.NamedTemporaryFile() as stream:
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
netlog_profiler.py | 5 import tempfile namespace 27 dump_file = tempfile.mkstemp()[1]
|
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)
|
/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()
|
/external/chromium_org/tools/cr/cr/commands/ |
shell.py | 8 import tempfile namespace 48 with tempfile.NamedTemporaryFile() as rcfile:
|
/external/chromium_org/tools/metrics/common/ |
diff_util.py | 14 from tempfile import NamedTemporaryFile
|