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

1 2

  /external/google-breakpad/src/client/windows/unittests/
exception_handler_nesting_test.cc 146 wchar_t temp_path[MAX_PATH] = { '\0' }; local
147 GetTempPath(MAX_PATH, temp_path);
149 ASSERT_TRUE(DoesPathExist(temp_path));
151 temp_path,
256 wchar_t temp_path[MAX_PATH] = { '\0' }; local
257 GetTempPath(MAX_PATH, temp_path);
259 ASSERT_TRUE(DoesPathExist(temp_path));
261 temp_path,
280 wchar_t temp_path[MAX_PATH] = { '\0' }; local
281 GetTempPath(MAX_PATH, temp_path);
305 wchar_t temp_path[MAX_PATH] = { '\\0' }; local
    [all...]
exception_handler_death_test.cc 77 TCHAR temp_path[MAX_PATH] = { '\0' }; local
81 GetTempPath(MAX_PATH, temp_path);
91 StringCchPrintfW(temp_path_, MAX_PATH, L"%s%s", temp_path, test_name_wide);
exception_handler_test.cc 115 TCHAR temp_path[MAX_PATH] = { '\0' }; local
119 GetTempPath(MAX_PATH, temp_path);
129 StringCchPrintfW(temp_path_, MAX_PATH, L"%s%s", temp_path, test_name_wide);
  /external/libcxx/utils/libcxx/android/
executors.py 20 _, temp_path, err, exitCode = self._execute_command_remote([cmd])
21 temp_path = temp_path.strip()
24 return temp_path
  /external/fonttools/Tests/subset/
subset_test.py 36 def temp_path(self, suffix): member in class:SubsetTest
56 path = self.temp_path(suffix=".ttx")
67 savepath = self.temp_path(suffix=suffix)
79 subsetpath = self.temp_path(".otf")
86 subsetpath = self.temp_path(".otf")
93 subsetpath = self.temp_path(".ttf")
100 subsetpath = self.temp_path(".ttf")
107 subsetpath = self.temp_path(".ttf")
113 subsetpath = self.temp_path(".ttf")
126 subsetpath = self.temp_path(".ttf"
    [all...]
  /external/fonttools/Tests/cffLib/
cffLib_test.py 52 temp_path = self.temp_font(font_path, file_name)
53 save_path = temp_path[:-4] + '2.otf'
54 font = TTFont(temp_path)
  /external/webrtc/webrtc/test/testsupport/
fileutils.cc 78 std::string temp_path = path; local
82 temp_path = path.substr(working_dir.length() + 1);
88 std::replace(temp_path.begin(), temp_path.end(), '/', '\\');
92 temp_path = temp_path.substr(0, temp_path.find_last_of(kPathDelimiter));
93 strncpy(relative_dir_path, temp_path.c_str(), FILENAME_MAX);
  /external/perf_data_converter/src/quipper/
scoped_temp_path_test.cc 118 ScopedTempDir temp_path; local
119 path = temp_path.path();
135 ScopedTempDir temp_path(prefix);
136 path = temp_path.path();
167 ScopedTempDir temp_path; local
168 path = temp_path.path();
  /external/google-breakpad/src/tools/windows/symupload/
symupload.cc 123 wchar_t temp_path[_MAX_PATH]; local
124 if (GetTempPath(_MAX_PATH, temp_path) == 0) {
129 if (GetTempFileName(temp_path, L"sym", 0, temp_filename) == 0) {
  /external/python/cpython2/Lib/test/
test_test_support.py 132 with support.temp_dir(path) as temp_path:
133 self.assertEqual(temp_path, path)
141 with support.temp_dir() as temp_path:
142 self.assertTrue(os.path.isdir(temp_path))
143 self.assertFalse(os.path.isdir(temp_path))
148 with support.temp_dir(path) as temp_path:
170 with support.temp_dir(path, quiet=True) as temp_path:
171 self.assertEqual(path, temp_path)
189 with support.temp_cwd() as temp_path:
201 # Make sure that temp_path is still present. When the chil
    [all...]
  /external/libcxx/utils/libcxx/test/
executor.py 174 _, temp_path, err, exitCode = self._execute_command_remote([cmd])
175 temp_path = temp_path.strip()
178 return temp_path
  /external/cldr/tools/java/org/unicode/cldr/draft/
Typology.java 61 StringBuilder temp_path = new StringBuilder(); field in class:Typology.MyReader
65 temp_path.setLength(0);
66 temp_path.append('/');
77 temp_path.append('/').append(item);
79 String fullPath = temp_path.toString();
  /external/fonttools/Tests/ttx/
ttx_test.py 84 temp_path = self.temp_font(font_path, file_name)
85 jobs, _ = ttx.parseOptions([temp_path])
98 temp_path = self.temp_font(font_path, file_name)
99 _, _ = ttx.parseOptions([temp_path]) # this is NOT a mistake
100 jobs, _ = ttx.parseOptions([temp_path])
113 temp_path = self.temp_font(font_path, file_name)
114 jobs, _ = ttx.parseOptions([temp_path])
127 temp_path = self.temp_font(font_path, file_name)
128 _, _ = ttx.parseOptions([temp_path]) # this is NOT a mistake
129 jobs, _ = ttx.parseOptions([temp_path])
    [all...]
  /external/libchrome/base/process/
process_metrics_unittest.cc 556 const FilePath temp_path = command_line->GetSwitchValuePath(kTempDirFlag); local
557 CHECK(DirectoryExists(temp_path));
562 CHECK(SignalEvent(temp_path, kSignalClosed));
578 const FilePath temp_path = temp_dir.GetPath(); local
580 child_command_line.AppendSwitchPath(kTempDirFlag, temp_path);
584 WaitForEvent(temp_path, kSignalClosed);
  /external/autotest/server/cros/
debugd_dev_tools.py 287 temp_path = self._get_temp_path(path)
288 self._host.run('mkdir -p "%s"' % os.path.dirname(temp_path))
289 self._host.run('cp -r "%s" "%s"' % (path, temp_path),
  /external/python/cpython3/Lib/test/
test_support.py 120 with support.temp_dir(path) as temp_path:
121 self.assertEqual(temp_path, path)
129 with support.temp_dir() as temp_path:
130 self.assertTrue(os.path.isdir(temp_path))
131 self.assertFalse(os.path.isdir(temp_path))
136 with support.temp_dir(path) as temp_path:
156 with support.temp_dir(path, quiet=True) as temp_path:
157 self.assertEqual(path, temp_path)
178 with support.temp_cwd() as temp_path:
189 # Make sure that temp_path is still present. When the chil
    [all...]
test_winconsoleio.py 113 temp_path = tempfile.mkdtemp()
114 self.addCleanup(support.rmtree, temp_path)
116 conout_path = os.path.join(temp_path, 'CONOUT$')
  /external/e2fsprogs/misc/
fuse2fs.c 919 char *temp_path; local
930 temp_path = strdup(path);
931 if (!temp_path) {
935 node_name = strrchr(temp_path, '/');
950 err = ext2fs_namei(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, temp_path,
1037 free(temp_path);
1047 char *temp_path; local
1059 temp_path = strdup(path);
1060 if (!temp_path) {
1064 node_name = strrchr(temp_path, '/');
1435 char *temp_path; local
1781 char *temp_path; local
2836 char *temp_path; local
    [all...]
  /external/webrtc/webrtc/base/
win32regkey_unittest.cc 567 wchar_t temp_path[MAX_PATH] = {0}; local
568 EXPECT_LT(::GetTempPath(arraysize(temp_path), temp_path),
569 static_cast<DWORD>(arraysize(temp_path)));
571 EXPECT_NE(::GetTempFileName(temp_path, L"rkut_",
  /external/fonttools/Tests/varLib/
interpolatable_test.py 53 def temp_path(self, suffix): member in class:InterpolatableTest
mutator_test.py 50 def temp_path(self, suffix): member in class:MutatorTest
73 path = self.temp_path(suffix=".ttx")
varLib_test.py 61 def temp_path(self, suffix): member in class:BuildTest
84 path = self.temp_path(suffix=".ttx")
96 path = self.temp_path(suffix=suffix)
  /external/ply/ply/ply/
cpp.py 166 self.temp_path = []
770 path = self.path + [""] + self.temp_path
773 path = self.temp_path + [""] + self.path
783 self.temp_path.insert(0,dname)
787 del self.temp_path[0]
    [all...]
  /external/autotest/client/common_lib/
packages.py     [all...]
  /external/fonttools/Tests/feaLib/
builder_test.py 97 def temp_path(self, suffix): member in class:BuilderTest
117 path = self.temp_path(suffix=".ttx")

Completed in 1427 milliseconds

1 2