Searched defs:tempfile (Results 176 - 200 of 231) sorted by relevance

12345678910

/external/skia/platform_tools/android/tests/
H A Dmakefile_writer_tests.py16 import tempfile namespace
129 f = tempfile.TemporaryFile()
139 fd, filename = tempfile.mkstemp()
157 fd, outfile = tempfile.mkstemp()
177 outdir = tempfile.mkdtemp()
186 outdir = tempfile.mkdtemp()
/external/skia/tools/
H A Dsubmit_try24 import tempfile namespace
256 temp_dir = tempfile.mkdtemp()
H A Dsvndiff.py27 import tempfile namespace
232 dest_dir = tempfile.mkdtemp()
266 original_file = tempfile.NamedTemporaryFile(delete = False)
/external/skia/tools/tests/
H A Drender_pictures_test.py17 import tempfile namespace
157 self._expectations_dir = tempfile.mkdtemp()
158 self._input_skp_dir = tempfile.mkdtemp()
160 self._output_dir = tempfile.mkdtemp()
/external/chromium_org/build/android/gyp/util/
H A Dbuild_utils.py16 import tempfile namespace
29 dirname = tempfile.mkdtemp()
/external/chromium_org/chrome/test/chromedriver/
H A Drun_buildbot_steps.py20 import tempfile namespace
69 for server_log in glob.glob(os.path.join(tempfile.gettempdir(),
102 temp_log = tempfile.mkstemp()[1]
215 (latest_fd, latest_file) = tempfile.mkstemp()
331 temp_notes_fname = tempfile.mkstemp()[1]
367 temp_latest_release_fname = tempfile.mkstemp()[1]
376 tmp_dir = tempfile.gettempdir()
/external/chromium_org/chrome/tools/
H A Dwebforms_aggregator.py33 import tempfile namespace
365 self._cookie_file = tempfile.NamedTemporaryFile(
/external/chromium_org/mojo/public/tools/bindings/generators/
H A Dmojom_java_generator.py13 import tempfile namespace
359 dirname = tempfile.mkdtemp()
/external/chromium_org/native_client_sdk/src/build_tools/tests/
H A Dsdktools_commands_test.py10 import tempfile namespace
45 temp_dir = tempfile.mkdtemp(prefix='archive')
/external/chromium_org/native_client_sdk/src/tools/tests/
H A Dcreate_nmf_test.py11 import tempfile namespace
124 self.tempdir = tempfile.mkdtemp()
/external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
H A Dbrowserlauncher.py10 import tempfile namespace
111 self.tool_log_dir = tempfile.mkdtemp(prefix='vglogs_')
137 self.profile = tempfile.mkdtemp(prefix='browserprofile_')
/external/chromium_org/sandbox/linux/services/
H A Dbroker_process_unittest.cc304 ScopedTemporaryFile tempfile; local
305 const char* tempfile_name = tempfile.full_file_name();
329 len = read(tempfile.fd(), buf, sizeof(buf));
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
H A Dsvn.py37 import tempfile namespace
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem.py39 import tempfile namespace
140 This is like tempfile.mkdtemp, but if used in a with statement
152 self._directory_path = tempfile.mkdtemp(**self._kwargs)
188 temp_fd, temp_name = tempfile.mkstemp(suffix)
/external/chromium_org/third_party/skia/gm/rebaseline_server/
H A Dcompare_rendered_pictures.py20 import tempfile namespace
161 tempdir = tempfile.mkdtemp()
H A Dimagediffdb.py21 import tempfile namespace
126 skpdiff_output_dir = tempfile.mkdtemp()
/external/chromium_org/third_party/skia/tools/skpdiff/
H A Dskpdiff_server.py13 import tempfile namespace
232 image_output_dir = os.path.realpath(tempfile.mkdtemp('skpdiff'))
/external/chromium_org/third_party/skia/tools/tests/
H A Drender_pictures_test.py17 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/binary_size/
H A Drun_binary_size_analysis.py24 import tempfile namespace
641 outfile = tempfile.NamedTemporaryFile(delete=False).name
820 'mapped to source locations. By default, a tempfile is '
/external/chromium_org/tools/
H A Dcheck_git_config.py33 import tempfile namespace
264 tmp = tempfile.mkdtemp()
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dcommon.py12 import tempfile namespace
336 tmp_fd, self.tmp_path = tempfile.mkstemp(
371 # tempfile.mkstemp uses an overly restrictive mode, resulting in a
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dxcode.py16 import tempfile namespace
438 tempfile.mkstemp(suffix='.tmp', prefix='project.pbxproj.gyp.',
464 # tempfile.mkstemp uses an overly restrictive mode, resulting in a
/external/chromium_org/tools/site_compare/commands/
H A Dcompare2.py14 import tempfile # Get a temporary directory to hold intermediates namespace
108 if not outdir: outdir = tempfile.gettempdir()
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dcros_interface.py10 import tempfile namespace
225 with tempfile.NamedTemporaryFile() as f:
269 t = tempfile.NamedTemporaryFile()
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_runner.py10 import tempfile namespace
127 self.profiler_dir = tempfile.mkdtemp()

Completed in 2084 milliseconds

12345678910