Searched defs:tempfile (Results 151 - 175 of 231) sorted by relevance

12345678910

/external/chromium_org/media/tools/constrained_network_server/
H A Dcns_test.py10 import tempfile namespace
190 f, self._file = tempfile.mkstemp(dir=os.getcwd())
/external/chromium_org/native_client_sdk/src/build_tools/tests/
H A Dsdktools_test.py11 import tempfile namespace
41 self.basedir = tempfile.mkdtemp(prefix=basedir_prefix, dir=tmpdir)
/external/chromium_org/native_client_sdk/src/tools/tests/
H A Doshelpers_test.py10 import tempfile namespace
55 self.tempdir = tempfile.mkdtemp()
194 self.tempdir = tempfile.mkdtemp()
/external/chromium_org/testing/gtest/test/
H A Dgtest_test_utils.py40 import tempfile namespace
152 _temp_dir = tempfile.mkdtemp()
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/
H A Dbuild_jsdoc_validator_jar.py10 import tempfile namespace
99 bin_path = tempfile.mkdtemp()
100 manifest_file = tempfile.NamedTemporaryFile(mode='wt', delete=False)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/bindings/
H A Dmain.py32 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()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem_unittest.py37 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/cython/src/Cython/Debugger/Tests/
H A DTestLibCython.py9 import tempfile namespace
58 python_version_script = tempfile.NamedTemporaryFile(mode='w+')
98 self.tempdir = tempfile.mkdtemp()
/external/chromium_org/third_party/cython/src/Cython/
H A DTestUtils.py9 import tempfile namespace
176 dir = tempfile.mkdtemp()
/external/chromium_org/third_party/jinja2/
H A Dbccache.py20 import tempfile namespace
205 directory = tempfile.gettempdir()
/external/chromium_org/third_party/skia/platform_tools/android/tests/
H A Dmakefile_writer_tests.py16 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/third_party/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/chromium_org/tools/gyp/pylib/gyp/
H A Dmac_tool.py22 import tempfile namespace
400 with tempfile.NamedTemporaryFile() as temp:
425 with tempfile.NamedTemporaryFile() as temp:
/external/chromium_org/tools/site_compare/commands/
H A Dmaskmaker.py14 import tempfile # Get a temporary directory to hold intermediates namespace
129 if not scrapedir: scrapedir = tempfile.gettempdir()
H A Dtimeload.py16 import tempfile # Get a temporary directory to hold intermediates namespace
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Ddesktop_browser_backend.py13 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/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dippet_power_monitor.py13 import tempfile namespace
109 self._output_dir = tempfile.mkdtemp()
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dperf_profiler.py11 import tempfile namespace
50 with tempfile.NamedTemporaryFile() as zero:
76 self._tmp_output_file = tempfile.NamedTemporaryFile('w', 0)
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dtab_unittest.py6 import tempfile namespace
44 return video.Video(tempfile.NamedTemporaryFile())
/external/chromium_org/tools/win/split_link/
H A Dsplit_link.py17 import tempfile namespace
211 temp = tempfile.NamedTemporaryFile(
/external/chromium_org/v8/tools/push-to-trunk/
H A Dpush_to_trunk.py32 import tempfile namespace
432 "PERSISTFILE_BASENAME": "/tmp/v8-push-to-trunk-tempfile",
434 "CHANGELOG_ENTRY_FILE": "/tmp/v8-push-to-trunk-tempfile-changelog-entry",
435 "PATCH_FILE": "/tmp/v8-push-to-trunk-tempfile-patch-file",
436 "COMMITMSG_FILE": "/tmp/v8-push-to-trunk-tempfile-commitmsg",
/external/clang/bindings/python/tests/cindex/
H A Dtest_translation_unit.py3 import tempfile namespace
97 _, path = tempfile.mkstemp()
/external/gtest/test/
H A Dgtest_test_utils.py40 import tempfile namespace
152 _temp_dir = tempfile.mkdtemp()
/external/qemu/android/utils/
H A Dtempfile.c13 #include "android/utils/tempfile.h"
56 TempFile* tempfile; local
99 tempfile = malloc( sizeof(*tempfile) + strlen(tempname) + 1 );
100 tempfile->name = (char*)(tempfile + 1);
101 strcpy( (char*)tempfile->name, tempname );
103 tempfile->next = _all_tempfiles;
104 _all_tempfiles = tempfile;
106 if ( !tempfile
120 tempfile_close(TempFile* tempfile) argument
192 TempFile* tempfile; local
[all...]

Completed in 802 milliseconds

12345678910