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

<<11121314151617

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
support.py 5 import tempfile namespace
83 d = tempfile.mkdtemp()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_main.py 10 import tempfile namespace
68 self.temp_dir = tempfile.mkdtemp() # tearDown() cleans this up.
test_refactor.py 12 import tempfile namespace
188 tmpdir = tempfile.mkdtemp(prefix="2to3-test_refactor")
246 dir = tempfile.mkdtemp(prefix="2to3-test_refactor")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetools.py 6 import tempfile namespace
216 'x-uuencode': 'uuencode tempfile',
217 'uuencode': 'uuencode tempfile',
218 'x-uue': 'uuencode tempfile',
219 'uue': 'uuencode tempfile',
230 (fd, tempname) = tempfile.mkstemp()
pipes.py 62 import tempfile namespace
225 (fd, temp) = tempfile.mkstemp()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
script_helper.py 8 import tempfile namespace
99 dirname = tempfile.mkdtemp()
test_hotshot.py 4 import tempfile namespace
132 emptyfile = tempfile.NamedTemporaryFile()
test_traceback.py 70 import os, tempfile, time namespace
73 testdir = tempfile.mkdtemp()
  /build/tools/releasetools/
common.py 27 import tempfile namespace
295 ramdisk_img = tempfile.NamedTemporaryFile()
296 img = tempfile.NamedTemporaryFile()
402 tmp = tempfile.mkdtemp(prefix="targetfiles-")
493 temp = tempfile.NamedTemporaryFile()
671 fd, fn = tempfile.mkstemp(prefix=prefix, suffix=suffix)
892 t = tempfile.NamedTemporaryFile()
934 ptemp = tempfile.NamedTemporaryFile()
1041 tmpdir = tempfile.mkdtemp()
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/tests/
oshelpers_test.py 10 import tempfile namespace
55 self.tempdir = tempfile.mkdtemp()
194 self.tempdir = tempfile.mkdtemp()
  /external/chromium_org/tools/gyp/pylib/gyp/
mac_tool.py 22 import tempfile namespace
400 with tempfile.NamedTemporaryFile() as temp:
425 with tempfile.NamedTemporaryFile() as temp:
  /external/fio/tools/plot/
fio2gnuplot 141 for tempfile in temp_files:
143 f.write(tempfile.read())
145 tempfile.close()
  /external/skia/tools/
roll_deps.py 33 import tempfile namespace
212 skia_dir = tempfile.mkdtemp(prefix='git_skia_tmp_')
320 temp_file = tempfile.NamedTemporaryFile(delete=False,
submit_try 24 import tempfile namespace
256 temp_dir = tempfile.mkdtemp()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_refactor.py 12 import tempfile namespace
188 tmpdir = tempfile.mkdtemp(prefix="2to3-test_refactor")
246 dir = tempfile.mkdtemp(prefix="2to3-test_refactor")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 42 import tempfile namespace
90 return tempfile.mktemp(prefix='listener-', dir=get_temp_dir())
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 42 import tempfile namespace
90 return tempfile.mktemp(prefix='listener-', dir=get_temp_dir())
92 return tempfile.mktemp(prefix=r'\\.\pipe\pyc-%d-%d-' %
  /art/test/etc/
push-and-run-prebuilt-test-jar 207 cmdfile=$(tempfile -p "cmd-" -s "-$TEST_NAME")
  /bionic/libc/tools/
generate-NOTICE.py 15 import tempfile namespace
  /cts/apps/CameraITS/pymodules/its/
objects.py 20 import tempfile namespace
  /external/chromium_org/third_party/jinja2/
bccache.py 20 import tempfile namespace
205 directory = tempfile.gettempdir()
  /external/chromium_org/third_party/skia/tools/
submit_try 24 import tempfile namespace
256 temp_dir = tempfile.mkdtemp()
  /external/llvm/utils/lit/lit/
TestRunner.py 5 import tempfile namespace
102 r[2] = tempfile.TemporaryFile(mode=r[1])
129 stderr = tempfile.TemporaryFile(mode='w+b')
142 f = tempfile.NamedTemporaryFile(delete=False)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_rpm.py 6 import tempfile namespace
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_httpservers.py 14 import tempfile namespace
285 basetempdir = tempfile.gettempdir()
288 self.tempdir = tempfile.mkdtemp(dir=basetempdir)
384 self.parent_dir = tempfile.mkdtemp()

Completed in 1221 milliseconds

<<11121314151617