/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
mhlib.py | 952 tempfile = file + "~" 953 f = open(tempfile, 'w') 957 os.rename(tempfile, file) [all...] |
cgi.py | 766 import tempfile namespace 767 return tempfile.TemporaryFile("w+b") [all...] |
platform.py | 385 import tempfile namespace 386 self.tmpfile = tmpfile = tempfile.mktemp() [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
mhlib.py | 952 tempfile = file + "~" 953 f = open(tempfile, 'w') 957 os.rename(tempfile, file) [all...] |
cgi.py | 766 import tempfile namespace 767 return tempfile.TemporaryFile("w+b") [all...] |
platform.py | 385 import tempfile namespace 386 self.tmpfile = tmpfile = tempfile.mktemp() [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
regrtest.py | 72 otherwise it is located in tempfile.gettempdir(). On subsequent runs, 167 import tempfile namespace 220 TEMPDIR = os.path.abspath(tempfile.gettempdir()) 392 filename = os.path.join(tempfile.gettempdir(), 'pynexttest') [all...] |
test_logging.py | 41 import tempfile namespace 1020 fn = tempfile.mktemp(".log") [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/ |
regrtest.py | 72 otherwise it is located in tempfile.gettempdir(). On subsequent runs, 167 import tempfile namespace 220 TEMPDIR = os.path.abspath(tempfile.gettempdir()) 392 filename = os.path.join(tempfile.gettempdir(), 'pynexttest') [all...] |
test_logging.py | 41 import tempfile namespace 1020 fn = tempfile.mktemp(".log") [all...] |
test_posix.py | 17 import tempfile namespace 21 _DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(),
|
/build/tools/releasetools/ |
check_target_files_signatures | 52 import tempfile namespace
|
/external/chromium_org/build/android/pylib/ |
android_commands.py | 20 import tempfile namespace [all...] |
/external/chromium_org/chrome/tools/ |
webforms_aggregator.py | 33 import tempfile namespace 365 self._cookie_file = tempfile.NamedTemporaryFile(
|
/external/chromium_org/chrome/test/chromedriver/test/ |
run_py_tests.py | 15 import tempfile namespace 739 tmp_log_path = tempfile.NamedTemporaryFile() [all...] |
/external/chromium_org/native_client_sdk/src/build_tools/tests/ |
update_nacl_manifest_test.py | 14 import tempfile namespace 751 f = tempfile.NamedTemporaryFile('w', prefix="test_update_nacl_manifest")
|
/external/chromium_org/remoting/tools/ |
me2me_virtual_host.py | 28 import tempfile namespace 677 log_file = tempfile.NamedTemporaryFile(prefix=log_file_prefix, delete=False) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/ |
PrettyPatch.rb | 7 require 'tempfile' 713 tempfile = Tempfile.new("PrettyPatch") 714 filepath = tempfile.path + '.bin'
|
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
xcode.py | 15 import tempfile namespace 436 tempfile.mkstemp(suffix='.tmp', prefix='project.pbxproj.gyp.', 462 # tempfile.mkstemp uses an overly restrictive mode, resulting in a [all...] |
/external/chromium_org/tools/win/toolchain/ |
toolchain.py | 15 import tempfile namespace 41 temp = tempfile.mkdtemp()
|
/external/grub/util/ |
grub-install | 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/distutils/ |
ccompiler.py | 736 import tempfile namespace 745 fd, fname = tempfile.mkstemp(".c", funcname, text=True) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
ccompiler.py | 736 import tempfile namespace 745 fd, fname = tempfile.mkstemp(".c", funcname, text=True) [all...] |
/external/v8/tools/ |
test.py | 40 import tempfile namespace 535 (fd_out, outname) = tempfile.mkstemp() 536 (fd_err, errname) = tempfile.mkstemp() [all...] |