/external/google-breakpad/src/client/windows/unittests/ |
D | exception_handler_nesting_test.cc | 146 wchar_t temp_path[MAX_PATH] = { '\0' }; in InstallExceptionHandlerAndCrash() local 147 GetTempPath(MAX_PATH, temp_path); in InstallExceptionHandlerAndCrash() 149 ASSERT_TRUE(DoesPathExist(temp_path)); in InstallExceptionHandlerAndCrash() 151 temp_path, in InstallExceptionHandlerAndCrash() 256 wchar_t temp_path[MAX_PATH] = { '\0' }; in TEST() local 257 GetTempPath(MAX_PATH, temp_path); in TEST() 259 ASSERT_TRUE(DoesPathExist(temp_path)); in TEST() 261 temp_path, in TEST() 280 wchar_t temp_path[MAX_PATH] = { '\0' }; in TEST() local 281 GetTempPath(MAX_PATH, temp_path); in TEST() [all …]
|
D | exception_handler_death_test.cc | 77 TCHAR temp_path[MAX_PATH] = { '\0' }; in SetUp() local 81 GetTempPath(MAX_PATH, temp_path); in SetUp() 91 StringCchPrintfW(temp_path_, MAX_PATH, L"%s%s", temp_path, test_name_wide); in SetUp()
|
D | exception_handler_test.cc | 115 TCHAR temp_path[MAX_PATH] = { '\0' }; in SetUp() local 119 GetTempPath(MAX_PATH, temp_path); in SetUp() 129 StringCchPrintfW(temp_path_, MAX_PATH, L"%s%s", temp_path, test_name_wide); in SetUp()
|
/external/fonttools/Tests/subset/ |
D | subset_test.py | 36 def temp_path(self, suffix): member in 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/webrtc/webrtc/test/testsupport/ |
D | fileutils.cc | 78 std::string temp_path = path; in SetExecutablePath() local 82 temp_path = path.substr(working_dir.length() + 1); in SetExecutablePath() 88 std::replace(temp_path.begin(), temp_path.end(), '/', '\\'); in SetExecutablePath() 92 temp_path = temp_path.substr(0, temp_path.find_last_of(kPathDelimiter)); in SetExecutablePath() 93 strncpy(relative_dir_path, temp_path.c_str(), FILENAME_MAX); in SetExecutablePath()
|
/external/perf_data_converter/src/quipper/ |
D | scoped_temp_path_test.cc | 118 ScopedTempDir temp_path; in TEST() local 119 path = temp_path.path(); in TEST() 135 ScopedTempDir temp_path(prefix); in TEST() local 136 path = temp_path.path(); in TEST() 167 ScopedTempDir temp_path; in TEST() local 168 path = temp_path.path(); in TEST()
|
/external/libcxx/utils/libcxx/android/ |
D | executors.py | 20 _, temp_path, err, exitCode = self._execute_command_remote([cmd]) 21 temp_path = temp_path.strip() 24 return temp_path
|
/external/python/cpython2/Lib/test/ |
D | 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) 214 with support.temp_dir() as temp_path: 215 with support.change_cwd(temp_path) as new_cwd: [all …]
|
/external/python/cpython3/Lib/test/ |
D | 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) 202 with support.temp_dir() as temp_path: 203 with support.change_cwd(temp_path) as new_cwd: [all …]
|
D | 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/fonttools/Tests/cffLib/ |
D | 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/fonttools/Tests/ttx/ |
D | 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/libcxx/utils/libcxx/test/ |
D | 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/ |
D | Typology.java | 61 StringBuilder temp_path = new StringBuilder(); field in Typology.MyReader 65 temp_path.setLength(0); in handleLine() 66 temp_path.append('/'); in handleLine() 77 temp_path.append('/').append(item); in handleLine() 79 String fullPath = temp_path.toString(); in handleLine()
|
/external/libchrome/base/process/ |
D | process_metrics_unittest.cc | 556 const FilePath temp_path = command_line->GetSwitchValuePath(kTempDirFlag); in MULTIPROCESS_TEST_MAIN() local 557 CHECK(DirectoryExists(temp_path)); in MULTIPROCESS_TEST_MAIN() 562 CHECK(SignalEvent(temp_path, kSignalClosed)); in MULTIPROCESS_TEST_MAIN() 578 const FilePath temp_path = temp_dir.GetPath(); in TEST() local 580 child_command_line.AppendSwitchPath(kTempDirFlag, temp_path); in TEST() 584 WaitForEvent(temp_path, kSignalClosed); in TEST()
|
/external/google-breakpad/src/tools/windows/symupload/ |
D | symupload.cc | 123 wchar_t temp_path[_MAX_PATH]; in DumpSymbolsToTempFile() local 124 if (GetTempPath(_MAX_PATH, temp_path) == 0) { in DumpSymbolsToTempFile() 129 if (GetTempFileName(temp_path, L"sym", 0, temp_filename) == 0) { in DumpSymbolsToTempFile()
|
/external/autotest/server/cros/ |
D | 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/e2fsprogs/misc/ |
D | fuse2fs.c | 919 char *temp_path; in op_mknod() local 930 temp_path = strdup(path); in op_mknod() 931 if (!temp_path) { in op_mknod() 935 node_name = strrchr(temp_path, '/'); in op_mknod() 950 err = ext2fs_namei(fs, EXT2_ROOT_INO, EXT2_ROOT_INO, temp_path, in op_mknod() 1037 free(temp_path); in op_mknod() 1047 char *temp_path; in op_mkdir() local 1059 temp_path = strdup(path); in op_mkdir() 1060 if (!temp_path) { in op_mkdir() 1064 node_name = strrchr(temp_path, '/'); in op_mkdir() [all …]
|
/external/webrtc/webrtc/base/ |
D | win32regkey_unittest.cc | 567 wchar_t temp_path[MAX_PATH] = {0}; in RegKeyStaticFunctionsTest() local 568 EXPECT_LT(::GetTempPath(arraysize(temp_path), temp_path), in RegKeyStaticFunctionsTest() 569 static_cast<DWORD>(arraysize(temp_path))); in RegKeyStaticFunctionsTest() 571 EXPECT_NE(::GetTempFileName(temp_path, L"rkut_", in RegKeyStaticFunctionsTest()
|
/external/autotest/client/cros/ |
D | cros_disks.py | 609 def _remove_temp_path(self, temp_path): argument 611 if temp_path: 613 path = temp_path.name 614 temp_path.clean()
|
/external/fonttools/Tests/varLib/ |
D | mutator_test.py | 50 def temp_path(self, suffix): member in MutatorTest 73 path = self.temp_path(suffix=".ttx")
|
D | varLib_test.py | 61 def temp_path(self, suffix): member in BuildTest 84 path = self.temp_path(suffix=".ttx") 96 path = self.temp_path(suffix=suffix)
|
D | interpolatable_test.py | 53 def temp_path(self, suffix): member in InterpolatableTest
|
/external/autotest/client/common_lib/ |
D | packages.py | 829 temp_path = tarball_path + '.tmp' 830 cmd_list = ['tar', '-cf', temp_path, '-C', src_dir] 841 os.unlink(temp_path) 844 os.rename(temp_path, tarball_path)
|
/external/ply/ply/ply/ |
D | 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]
|