HomeSort by relevance Sort by last modified time
    Searched full:tempfile (Results 276 - 300 of 402) sorted by null

<<11121314151617

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_osx_support.py 60 # tempfile is also not available then.
63 import tempfile namespace
64 fp = tempfile.NamedTemporaryFile()
mhlib.py 952 tempfile = file + "~"
953 f = open(tempfile, 'w')
957 os.rename(tempfile, file)
    [all...]
webbrowser.py 409 import tempfile namespace
410 tempdir = os.path.join(tempfile.gettempdir(),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_osx_support.py 60 # tempfile is also not available then.
63 import tempfile namespace
64 fp = tempfile.NamedTemporaryFile()
mhlib.py 952 tempfile = file + "~"
953 f = open(tempfile, 'w')
957 os.rename(tempfile, file)
    [all...]
webbrowser.py 409 import tempfile namespace
410 tempdir = os.path.join(tempfile.gettempdir(),
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapFolder.java     [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintActivity.java     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib.py 9 import tempfile namespace
228 fd, tmp_file = tempfile.mkstemp()
319 newFd, newFilePath = tempfile.mkstemp()
    [all...]
test_posix.py 17 import tempfile namespace
21 _DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib.py 9 import tempfile namespace
228 fd, tmp_file = tempfile.mkstemp()
319 newFd, newFilePath = tempfile.mkstemp()
    [all...]
test_posix.py 17 import tempfile namespace
21 _DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(),
  /cts/apps/CameraITS/pymodules/its/
objects.py 20 import tempfile namespace
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py3/
shell.py 33 import tempfile as _tempfile
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/_setup/py3/
shell.py 33 import tempfile as _tempfile
  /external/llvm/utils/
update_llc_test_checks.py 15 import tempfile namespace
  /bionic/libc/tools/
gensyscalls.py 18 import tempfile namespace
25 bionic_temp = tempfile.mkdtemp(prefix="bionic_gensyscalls");
  /external/clang/test/
lit.cfg 7 import tempfile
382 handle, path = tempfile.mkstemp(prefix='case-test', dir=config.test_exec_root)
  /external/deqp/scripts/
make_release.py 36 import tempfile namespace
325 dirName = os.path.join(tempfile.gettempdir(), "dEQP-Releases")
  /external/skia/tools/skpdiff/
skpdiff_server.py 13 import tempfile namespace
232 image_output_dir = os.path.realpath(tempfile.mkdtemp('skpdiff'))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
util.py 404 from tempfile import mkstemp
407 from tempfile import mktemp
  /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/linux-x86/2.7.5/lib/python2.7/distutils/
util.py 404 from tempfile import mkstemp
407 from tempfile import mktemp
  /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/site-packages/setoolsgui/networkx/readwrite/tests/
test_graphml.py 6 import tempfile namespace
401 fd, fname = tempfile.mkstemp()

Completed in 1080 milliseconds

<<11121314151617