/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
perf_profiler.py | 11 import tempfile namespace 50 with tempfile.NamedTemporaryFile() as zero: 76 self._tmp_output_file = tempfile.NamedTemporaryFile('w', 0)
|
/external/skia/tools/ |
svndiff.py | 27 import tempfile namespace 232 dest_dir = tempfile.mkdtemp() 266 original_file = tempfile.NamedTemporaryFile(delete = False)
|
/build/tools/releasetools/ |
img_from_target_files | 40 import tempfile namespace
|
img_from_target_files.py | 40 import tempfile namespace
|
/external/chromium_org/mojo/tools/ |
check_mojom_golden_files.py | 11 from tempfile import mkdtemp
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
compile_frontend.py | 40 import tempfile namespace 153 modules_dir = tempfile.mkdtemp() 237 compiler_args_file = tempfile.NamedTemporaryFile(mode='wt', delete=False) 278 injected_script_externs_file = tempfile.NamedTemporaryFile(mode='wt', delete=False)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
filesystem_unittest.py | 37 import tempfile namespace 261 text_path = tempfile.mktemp(prefix='tree_unittest_') 283 text_path = tempfile.mktemp(prefix='tree_unittest_') 284 binary_path = tempfile.mktemp(prefix='tree_unittest_')
|
/external/chromium_org/third_party/skia/tools/tests/ |
render_pictures_test.py | 17 import tempfile namespace 161 self._expectations_dir = tempfile.mkdtemp() 162 self._input_skp_dir = tempfile.mkdtemp() 164 self._output_dir = tempfile.mkdtemp()
|
/external/chromium_org/tools/site_compare/commands/ |
timeload.py | 16 import tempfile # Get a temporary directory to hold intermediates namespace
|
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
desktop_browser_backend.py | 13 import tempfile namespace 57 self._tmp_minidump_dir = tempfile.mkdtemp() 70 self._tmp_profile_dir = tempfile.mkdtemp() 190 self._tmp_output_file = tempfile.NamedTemporaryFile('w', 0)
|
/external/clang/tools/scan-build/ |
ccc-analyzer | 19 use File::Temp qw/ tempfile /; 116 my ($PPH, $PPFile) = tempfile( $prefix . "_XXXXXX", 253 my ($ofh, $ofile) = tempfile("clang_output_XXXXXX", DIR => $HtmlDir); 689 my ($h, $f) = tempfile("report-XXXXXX", SUFFIX => ".plist",
|
/prebuilts/misc/darwin-x86/analyzer/tools/scan-build/ |
ccc-analyzer | 19 use File::Temp qw/ tempfile /; 116 my ($PPH, $PPFile) = tempfile( $prefix . "_XXXXXX", 254 my ($ofh, $ofile) = tempfile("clang_output_XXXXXX", DIR => $HtmlDir); 681 my ($h, $f) = tempfile("report-XXXXXX", SUFFIX => ".plist",
|
/prebuilts/misc/linux-x86/analyzer/tools/scan-build/ |
ccc-analyzer | 19 use File::Temp qw/ tempfile /; 116 my ($PPH, $PPFile) = tempfile( $prefix . "_XXXXXX", 254 my ($ofh, $ofile) = tempfile("clang_output_XXXXXX", DIR => $HtmlDir); 681 my ($h, $f) = tempfile("report-XXXXXX", SUFFIX => ".plist",
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_config.py | 5 import tempfile namespace
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_config.py | 5 import tempfile namespace
|
/bionic/libc/tools/zoneinfo/ |
update-tzdata.py | 14 import tempfile namespace 70 tmp_dir = tempfile.mkdtemp('-tzdata')
|
/external/chromium_org/build/android/gyp/ |
emma_instr.py | 27 import tempfile namespace 157 temp_dir = tempfile.mkdtemp()
|
/external/chromium_org/build/android/ |
lighttpd_server.py | 22 import tempfile namespace 49 self.temp_dir = tempfile.mkdtemp(prefix='lighttpd_for_chrome_android')
|
/external/chromium_org/build/android/pylib/utils/ |
flakiness_dashboard_results_uploader.py | 11 import tempfile namespace 146 tmp_folder = tempfile.mkdtemp()
|
parallelizer_test.py | 11 import tempfile namespace 116 completion_files = [tempfile.NamedTemporaryFile(delete=False)
|
/external/chromium_org/chrome/test/chromedriver/test/ |
run_all_tests.py | 13 import tempfile namespace 34 _, log_path = tempfile.mkstemp(prefix='chromedriver_')
|
/external/chromium_org/native_client_sdk/src/tools/tests/ |
getos_test.py | 9 import tempfile namespace 109 self.tempdir = tempfile.mkdtemp("_sdktest")
|
/external/chromium_org/ppapi/native_client/tests/breakpad_crash_test/ |
crash_dump_tester.py | 9 import tempfile namespace 106 temp_dir = tempfile.mkdtemp(prefix='nacl_crash_dump_tester_')
|
/external/chromium_org/testing/gtest/test/ |
gtest_test_utils.py | 40 import tempfile namespace 152 _temp_dir = tempfile.mkdtemp()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/bindings/ |
main.py | 32 import tempfile namespace 84 """Wrapper for tempfile.mkdtemp() so it's usable with 'with' statement. 86 Simple backport of tempfile.TemporaryDirectory from Python 3.2. 88 name = tempfile.mkdtemp()
|