HomeSort by relevance Sort by last modified time
    Searched refs:tempfile (Results 1 - 25 of 242) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/native_client_sdk/src/tools/tests/
fix_deps_test.py 7 import tempfile namespace
26 self.tempfile = None
29 if self.tempfile:
30 os.remove(self.tempfile)
45 self.tempfile = tempfile.mktemp("_sdktest")
46 with open(self.tempfile, 'w') as out:
48 fix_deps.FixupDepFile(self.tempfile)
49 with open(self.tempfile) as infile:
58 self.tempfile = tempfile.mktemp("_sdktest"
    [all...]
  /external/chromium_org/build/android/
adb_android_webview_command_line 20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
adb_chrome_shell_command_line 20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
adb_content_shell_command_line 20 tempfile=$(tempfile)
21 adb pull $CMD_LINE_FILE $tempfile 2>/dev/null
23 rm $tempfile
  /external/chromium_org/tools/profile_chrome/
trace_packager_unittest.py 6 import tempfile namespace
20 with tempfile.NamedTemporaryFile(delete=False) as f1, \
21 tempfile.NamedTemporaryFile(delete=False) as f2:
27 with tempfile.NamedTemporaryFile() as output:
  /external/llvm/utils/release/
merge.sh 61 tempfile=`mktemp /tmp/merge.XXXXXX` || exit 1
63 echo "Merging r$rev:" > $tempfile
64 svn log -c $rev http://llvm.org/svn/llvm-project/$proj/trunk >> $tempfile 2>&1
72 svn commit -F $tempfile || exit 1
73 rm -f $tempfile
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
show-pretty-diff 28 use File::Temp qw(tempfile);
40 ($inputTempFileHandle, $inputPath) = tempfile(
55 my ($prettydiffFileHandle, $prettydiffPath) = tempfile(
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
prettypatch.py 30 import tempfile namespace
42 diff_file = tempfile.NamedTemporaryFile(suffix=".html")
  /external/chromium_org/third_party/skia/platform_tools/android/tests/
gyp_to_android_tests.py 15 import tempfile namespace
30 self.__tmp_dir = tempfile.mkdtemp()
  /external/chromium_org/tools/memory_inspector/memory_inspector/unittest/mock_adb/
mock_adb.py 7 import tempfile namespace
25 (fd_num, self._cfg_file) = tempfile.mkstemp()
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
android_systrace_profiler_unittest.py 6 import tempfile namespace
18 out_dir = tempfile.mkdtemp()
  /external/compiler-rt/test/asan/android_commands/
android_common.py 1 import os, subprocess, tempfile namespace
18 tmp = tempfile.mktemp()
  /external/chromium_org/build/android/gyp/util/
md5_check_test.py 5 import tempfile namespace
17 input_file1 = tempfile.NamedTemporaryFile()
18 input_file2 = tempfile.NamedTemporaryFile()
27 record_path = tempfile.NamedTemporaryFile(suffix='.stamp')
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/
compare_ir 32 import tempfile namespace
48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1]))
49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
  /external/mesa3d/src/glsl/tests/
compare_ir 32 import tempfile namespace
48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1]))
49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
  /external/chromium_org/build/android/gyp/
finalize_apk.py 13 import tempfile namespace
91 with tempfile.NamedTemporaryFile() as signed_apk_path_tmp, \
92 tempfile.NamedTemporaryFile() as apk_to_sign_tmp, \
93 tempfile.NamedTemporaryFile() as apk_without_descriptors_tmp, \
94 tempfile.NamedTemporaryFile() as aligned_apk_tmp:
create_standalone_apk.py 15 import tempfile namespace
22 with tempfile.NamedTemporaryFile(suffix='.zip') as intermediate_file:
pack_arm_relocations.py 29 import tempfile namespace
41 with tempfile.NamedTemporaryFile() as stream:
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/
build_compiler_runner_jar.py 7 import tempfile namespace
41 bin_path = tempfile.mkdtemp()
42 manifest_file = tempfile.NamedTemporaryFile(mode='wt', delete=False)
  /external/chromium_org/third_party/closure_compiler/runner/
build_runner_jar.py 10 import tempfile namespace
45 bin_path = tempfile.mkdtemp()
46 manifest_file = tempfile.NamedTemporaryFile(mode='wt', delete=False)
  /external/chromium_org/tools/grit/grit/node/
structure_unittest.py 16 import tempfile namespace
57 filename = node.Process(tempfile.gettempdir())
58 with open(os.path.join(tempfile.gettempdir(), filename)) as f:
  /external/chromium_org/third_party/skia/tools/
test_pdfs.py 17 import tempfile namespace
  /external/chromium_org/tools/grit/grit/tool/
build_unittest.py 11 import tempfile namespace
27 output_dir = tempfile.mkdtemp()
37 output_dir = tempfile.mkdtemp()
61 output_dir = tempfile.mkdtemp()
  /external/chromium_org/v8/tools/
android-run.py 42 import tempfile namespace
50 (fd_out, outname) = tempfile.mkstemp()
51 (fd_err, errname) = tempfile.mkstemp()
79 (fd, fname) = tempfile.mkstemp()
  /external/fonttools/MetaTools/
roundTrip.py 19 import tempfile namespace
34 xmlFile1 = tempfile.mktemp(".%s.ttx1" % fn)
35 ttFile2 = tempfile.mktemp(".%s" % fn)
36 xmlFile2 = tempfile.mktemp(".%s.ttx2" % fn)

Completed in 7737 milliseconds

1 2 3 4 5 6 7 8 910