HomeSort by relevance Sort by last modified time
    Searched defs:tempfile (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium_org/build/
extract_from_cab.py 12 import tempfile namespace
34 temp_dir = tempfile.mkdtemp(dir=output_dir)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
prettypatch.py 30 import tempfile namespace
42 diff_file = tempfile.NamedTemporaryFile(suffix=".html")
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/
compare_ir 32 import tempfile namespace
48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1]))
49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
  /external/chromium_org/tools/compile_test/
compile_test.py 18 import tempfile namespace
37 tmpdir = tempfile.mkdtemp()
  /external/chromium_org/tools/cr/cr/commands/
shell.py 8 import tempfile namespace
48 with tempfile.NamedTemporaryFile() as rcfile:
  /external/chromium_org/tools/deep_memory_profiler/visualizer/
template.py 9 import tempfile namespace
63 html_handle, html_path = tempfile.mkstemp('.html', 'graph', html_dir)
  /external/chromium_org/tools/profile_chrome/
trace_packager_unittest.py 6 import tempfile namespace
20 with tempfile.NamedTemporaryFile(delete=False) as f1, \
21 tempfile.NamedTemporaryFile(delete=False) as f2:
27 with tempfile.NamedTemporaryFile() as output:
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
netlog_profiler.py 5 import tempfile namespace
27 dump_file = tempfile.mkstemp()[1]
android_systrace_profiler_unittest.py 6 import tempfile namespace
18 out_dir = tempfile.mkdtemp()
  /external/mesa3d/src/glsl/tests/
compare_ir 32 import tempfile namespace
48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1]))
49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
  /bionic/libc/tools/
genlibgcc_compat.py 71 import tempfile namespace
93 build_output_file_path = tempfile.mkstemp()[1]
  /cts/apps/CameraITS/tools/
run_all_tests.py 17 import tempfile namespace
57 topdir = tempfile.mkdtemp()
  /external/chromium_org/build/android/gyp/
create_standalone_apk.py 15 import tempfile namespace
22 with tempfile.NamedTemporaryFile(suffix='.zip') as intermediate_file:
pack_arm_relocations.py 29 import tempfile namespace
41 with tempfile.NamedTemporaryFile() as stream:
  /external/chromium_org/content/shell/tools/
breakpad_integration_test.py 19 import tempfile namespace
55 crash_dir = tempfile.mkdtemp()
  /external/chromium_org/third_party/skia/tools/
merge_static_libs.py 10 import tempfile namespace
23 tempdir = tempfile.mkdtemp()
test_pdfs.py 17 import tempfile namespace
  /external/chromium_org/third_party/webrtc/tools/
compare_videos.py 15 import tempfile namespace
105 png_working_directory = tempfile.mkdtemp()
  /external/chromium_org/tools/ipc_fuzzer/
remove_close_messages.py 19 import tempfile namespace
22 temp_file = tempfile.NamedTemporaryFile(delete=False)
  /external/chromium_org/tools/memory_inspector/memory_inspector/unittest/mock_adb/
mock_adb.py 7 import tempfile namespace
25 (fd_num, self._cfg_file) = tempfile.mkstemp()
  /external/chromium_org/tools/perf/measurements/
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/tcmalloc/
print-live-objects.py 14 import tempfile namespace
46 addr_file, addr_filename = tempfile.mkstemp()
  /external/chromium_org/tools/telemetry/telemetry/core/
browser_credentials_unittest.py 5 import tempfile namespace
42 with tempfile.NamedTemporaryFile(delete=False) as f:

Completed in 950 milliseconds

1 2 3 4 5 6 7 8 9