HomeSort by relevance Sort by last modified time
    Searched refs:tempfile (Results 251 - 275 of 324) sorted by null

<<111213

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tools.py 13 import tempfile namespace
test_runpy.py 7 import tempfile namespace
119 pkg_dir = sub_dir = tempfile.mkdtemp()
  /external/chromium_org/chrome/test/pyautolib/
policy_base.py 66 import tempfile namespace
299 self._temp_data_dir = tempfile.mkdtemp(dir=source_dir)
  /external/chromium_org/native_client_sdk/src/build_tools/tests/
sdktools_commands_test.py 10 import tempfile namespace
45 temp_dir = tempfile.mkdtemp(prefix='archive')
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
base_unittest.py 32 import tempfile namespace
85 new_file = tempfile.NamedTemporaryFile()
  /external/chromium_org/tools/
bisect-builds.py 53 import tempfile namespace
358 tempdir = tempfile.mkdtemp(prefix='bisect_tmp')
    [all...]
  /external/chromium_org/tools/grit/grit/
util.py 15 import tempfile namespace
627 self._tmp_dir_name = tempfile.mkdtemp()
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner.py 9 import tempfile namespace
123 self.profiler_dir = tempfile.mkdtemp()
  /external/chromium_org/v8/tools/push-to-trunk/
push_to_trunk.py 31 import tempfile namespace
43 PERSISTFILE_BASENAME: "/tmp/v8-push-to-trunk-tempfile",
48 CHANGELOG_ENTRY_FILE: "/tmp/v8-push-to-trunk-tempfile-changelog-entry",
49 PATCH_FILE: "/tmp/v8-push-to-trunk-tempfile-patch-file",
50 COMMITMSG_FILE: "/tmp/v8-push-to-trunk-tempfile-commitmsg",
161 handle, new_changelog = tempfile.mkstemp()
test_scripts.py 30 import tempfile namespace
43 PERSISTFILE_BASENAME: "/tmp/test-v8-push-to-trunk-tempfile",
48 CHANGELOG_ENTRY_FILE: "/tmp/test-v8-push-to-trunk-tempfile-changelog-entry",
49 PATCH_FILE: "/tmp/test-v8-push-to-trunk-tempfile-patch",
50 COMMITMSG_FILE: "/tmp/test-v8-push-to-trunk-tempfile-commitmsg",
51 CHROMIUM: "/tmp/test-v8-push-to-trunk-tempfile-chromium",
52 DEPS_FILE: "/tmp/test-v8-push-to-trunk-tempfile-chromium/DEPS",
259 handle, name = tempfile.mkstemp()
  /external/grub/util/
grub-install.in 45 # look for secure tempfile creation wrappers on this platform
46 if test -x /bin/tempfile; then
47 mklog="/bin/tempfile --prefix=grub"
48 mkimg="/bin/tempfile --prefix=grub"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
IOBinding.py 13 import tempfile namespace
490 (tfd, tempfilename) = tempfile.mkstemp(prefix='IDLE_tmp_')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_runpy.py 7 import tempfile namespace
119 pkg_dir = sub_dir = tempfile.mkdtemp()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
webbrowser.py 409 import tempfile namespace
410 tempdir = os.path.join(tempfile.gettempdir(),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
IOBinding.py 13 import tempfile namespace
490 (tfd, tempfilename) = tempfile.mkstemp(prefix='IDLE_tmp_')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
webbrowser.py 409 import tempfile namespace
410 tempdir = os.path.join(tempfile.gettempdir(),
  /external/chromium_org/build/android/pylib/linker/
test_case.py 42 import tempfile namespace
  /external/chromium_org/v8/tools/
push-to-trunk.sh 34 PERSISTFILE_BASENAME=/tmp/v8-push-to-trunk-tempfile
  /external/clang/utils/
token-delta.py 7 import tempfile namespace
  /external/v8/tools/
push-to-trunk.sh 34 PERSISTFILE_BASENAME=/tmp/v8-push-to-trunk-tempfile
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_wininst.py 183 from tempfile import mktemp
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
bdist_wininst.py 183 from tempfile import mktemp
  /external/chromium_org/chrome/test/functional/
perf_endure.py 40 import tempfile namespace
129 tempdir = tempfile.gettempdir()
140 self._workdir = tempfile.mkdtemp(prefix=dir_prefix, dir=tempdir)
    [all...]
  /external/chromium_org/tools/valgrind/
valgrind_test.py 19 import tempfile namespace
52 self.temp_dir = tempfile.mkdtemp(prefix="vg_logs_", dir=temp_parent_dir)
436 (fd, indirect_fname) = tempfile.mkstemp(dir=self.log_dir,
    [all...]
  /frameworks/compile/libbcc/gdb_plugin/
android-commands.py 32 import tempfile namespace
213 self.temp_libdir = tempfile.mkdtemp()
513 self.temp_dir = tempfile.mkdtemp()

Completed in 802 milliseconds

<<111213