Searched defs:tempfile (Results 126 - 150 of 231) sorted by relevance

12345678910

/external/chromium_org/tools/accessibility/nvda/
H A Dnvda_chrome_tests.py31 import tempfile namespace
75 user_data_dir = tempfile.mkdtemp(dir = CHROME_PROFILES_PATH)
/external/chromium_org/tools/find_runtime_symbols/
H A Dprepare_symbol_info.py15 import tempfile namespace
31 handle_out, filename_out = tempfile.mkstemp(
33 handle_err, filename_err = tempfile.mkstemp(
124 output_dir_path = tempfile.mkdtemp()
137 output_dir_path = tempfile.mkdtemp()
/external/chromium_org/tools/gn/bootstrap/
H A Dbootstrap.py20 import tempfile namespace
44 path = tempfile.mkdtemp()
/external/chromium_org/tools/grit/grit/format/
H A Drc_unittest.py14 import tempfile namespace
198 output_file = '%s/HTML_FILE1_include_test.html' % tempfile.gettempdir()
245 output_dir = tempfile.gettempdir()
259 output_file = '%s/HTML_FILE1_chrome_html.html' % tempfile.gettempdir()
305 output_dir = tempfile.gettempdir()
/external/chromium_org/tools/gyp/test/ios/
H A Dgyptest-per-config-settings.py17 import tempfile namespace
44 with tempfile.NamedTemporaryFile() as temp:
/external/chromium_org/tools/perf/profile_creators/
H A Dextensions_profile_creator.py12 import tempfile namespace
123 self._extension_download_dir = tempfile.mkdtemp()
/external/chromium_org/tools/profile_chrome/
H A Dperf_controller.py10 import tempfile namespace
52 self._log_file = tempfile.TemporaryFile()
147 symfs_dir = os.path.join(tempfile.gettempdir(),
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dbitmap_unittest.py6 import tempfile namespace
94 temp_file = tempfile.NamedTemporaryFile().name
105 temp_file = tempfile.NamedTemporaryFile().name
H A Dextension_unittest.py8 import tempfile namespace
107 self._extension_dirs = [tempfile.mkdtemp()
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dcros_interface_unittest.py10 import tempfile namespace
64 f = tempfile.NamedTemporaryFile()
77 f = tempfile.NamedTemporaryFile()
89 f = tempfile.NamedTemporaryFile()
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dpowermetrics_power_monitor.py10 import tempfile namespace
36 # started. In order to avoid various race conditions in tempfile creation
38 # there rather than say, creating a tempfile, deleting it and reusing its
40 self._output_directory = tempfile.mkdtemp()
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dstrace_profiler.py11 import tempfile namespace
168 self._tmp_output_file = tempfile.NamedTemporaryFile('w', 0)
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_set_archive_info_unittest.py7 import tempfile namespace
38 self.tmp_dir = tempfile.mkdtemp()
H A Dprofile_generator.py13 import tempfile namespace
74 temp_output_directory = tempfile.mkdtemp()
/external/clang/utils/
H A Dtoken-delta.py7 import tempfile namespace
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dattr.py7 import tempfile namespace
239 tempdir = tempfile.mkdtemp();
/external/llvm/utils/lit/lit/
H A DTestRunner.py5 import tempfile namespace
102 r[2] = tempfile.TemporaryFile(mode=r[1])
129 stderr = tempfile.TemporaryFile(mode='w+b')
142 f = tempfile.NamedTemporaryFile(delete=False)
/external/protobuf/gtest/test/
H A Dgtest_test_utils.py40 import tempfile namespace
136 _temp_dir = tempfile.mkdtemp()
/external/skia/tools/
H A Dfind_bad_images_in_skps.py20 tempfile.mkdtemp().
29 import tempfile namespace
101 self.saved_image_dir = tempfile.mkdtemp(prefix='skia_skp_test_')
119 temp_image_dir = tempfile.mkdtemp(prefix='skia_skp_test___')
171 temp_dir = tempfile.mkdtemp(prefix='skia_skp_test_')
H A Droll_deps.py33 import tempfile namespace
212 skia_dir = tempfile.mkdtemp(prefix='git_skia_tmp_')
320 temp_file = tempfile.NamedTemporaryFile(delete=False,
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dtestbase.py8 import tempfile namespace
31 os.path.realpath(tempfile.gettempdir()),
/external/chromium_org/build/android/pylib/instrumentation/
H A Dtest_jar.py13 import tempfile namespace
77 with tempfile.NamedTemporaryFile() as proguard_output:
/external/chromium_org/build/android/pylib/utils/
H A Dparallelizer_test.py11 import tempfile namespace
116 completion_files = [tempfile.NamedTemporaryFile(delete=False)
/external/chromium_org/chrome/test/chromedriver/
H A Dutil.py14 import tempfile namespace
90 path = tempfile.mkdtemp(dir=parent_dir)
/external/chromium_org/chrome/tools/build/win/
H A Dresedit.py17 import tempfile namespace
94 self._temp_dir = tempfile.mkdtemp()

Completed in 1484 milliseconds

12345678910