Searched defs:tempfile (Results 1 - 25 of 231) sorted by last modified time

12345678910

/external/sonivox/jet_tools/JetCreator/
H A DJetUtils.py31 import tempfile namespace
/external/skia/platform_tools/android/tests/
H A Dandroid_framework_gyp_tests.py15 import tempfile namespace
31 self.__tmp_dir = tempfile.mkdtemp()
44 f = tempfile.mkstemp(dir=self.__tmp_dir)
H A Dgenerate_user_config_tests.py16 import tempfile namespace
50 tmp = tempfile.mkdtemp()
76 tmp = tempfile.mkdtemp()
H A Dgyp_to_android_tests.py15 import tempfile namespace
30 self.__tmp_dir = tempfile.mkdtemp()
H A Dmakefile_writer_tests.py16 import tempfile namespace
129 f = tempfile.TemporaryFile()
139 fd, filename = tempfile.mkstemp()
157 fd, outfile = tempfile.mkstemp()
177 outdir = tempfile.mkdtemp()
186 outdir = tempfile.mkdtemp()
/external/skia/tools/
H A Dfind_bad_images_in_skps.py20 tempfile.mkdtemp().
29 import tempfile namespace
101 self.saved_image_dir = tempfile.mkdtemp(prefix='skia_skp_test_')
119 temp_image_dir = tempfile.mkdtemp(prefix='skia_skp_test___')
171 temp_dir = tempfile.mkdtemp(prefix='skia_skp_test_')
H A Dmerge_static_libs.py10 import tempfile namespace
23 tempdir = tempfile.mkdtemp()
H A Droll_deps.py33 import tempfile namespace
212 skia_dir = tempfile.mkdtemp(prefix='git_skia_tmp_')
320 temp_file = tempfile.NamedTemporaryFile(delete=False,
H A Dsubmit_try24 import tempfile namespace
256 temp_dir = tempfile.mkdtemp()
H A Dsvndiff.py27 import tempfile namespace
232 dest_dir = tempfile.mkdtemp()
266 original_file = tempfile.NamedTemporaryFile(delete = False)
H A Dtest_pdfs.py17 import tempfile namespace
/external/skia/tools/pyutils/
H A Durl_utils_test.py15 import tempfile namespace
42 tempdir_path = tempfile.mkdtemp()
/external/skia/tools/skpdiff/
H A Dskpdiff_server.py13 import tempfile namespace
232 image_output_dir = os.path.realpath(tempfile.mkdtemp('skpdiff'))
/external/skia/tools/tests/
H A Drender_pictures_test.py17 import tempfile namespace
157 self._expectations_dir = tempfile.mkdtemp()
158 self._input_skp_dir = tempfile.mkdtemp()
160 self._output_dir = tempfile.mkdtemp()
H A Dskimage_self_test.py12 import tempfile namespace
165 empty_dir = tempfile.mkdtemp()
/external/skia/gm/rebaseline_server/
H A Dbase_unittest.py16 import tempfile namespace
33 self._temp_dir = tempfile.mkdtemp()
H A Ddownload_actuals_test.py24 import tempfile namespace
H A Dimagediffdb.py19 import tempfile namespace
132 skpdiff_csv_dir = tempfile.mkdtemp()
H A Dimagediffdb_test.py15 import tempfile namespace
29 self._temp_dir = tempfile.mkdtemp()
H A Dimagepair_test.py14 import tempfile namespace
28 self._temp_dir = tempfile.mkdtemp()
/external/skia/platform_tools/android/bin/
H A Dgyp_to_android.py16 import tempfile namespace
76 tmp_folder = tempfile.mkdtemp(dir=SKIA_DIR)
/external/qemu/android/utils/
H A Dtempfile.c13 #include "android/utils/tempfile.h"
56 TempFile* tempfile; local
99 tempfile = malloc( sizeof(*tempfile) + strlen(tempname) + 1 );
100 tempfile->name = (char*)(tempfile + 1);
101 strcpy( (char*)tempfile->name, tempname );
103 tempfile->next = _all_tempfiles;
104 _all_tempfiles = tempfile;
106 if ( !tempfile
120 tempfile_close(TempFile* tempfile) argument
192 TempFile* tempfile; local
[all...]
/external/protobuf/gtest/test/
H A Dgtest_test_utils.py40 import tempfile namespace
136 _temp_dir = tempfile.mkdtemp()
/external/mesa3d/src/glsl/tests/
H A Dcompare_ir32 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/llvm/utils/lit/lit/
H A DTestRunner.py5 import tempfile namespace
102 r[2] = tempfile.TemporaryFile(mode=r[1])
129 stderr = tempfile.TemporaryFile(mode='w+b')
142 f = tempfile.NamedTemporaryFile(delete=False)

Completed in 955 milliseconds

12345678910