Home
last modified time | relevance | path

Searched refs:destPath (Results 1 – 6 of 6) sorted by relevance

/external/icu/icu4c/source/tools/icupkg/
Dicupkg.cpp257 const char *pname, *sourcePath, *destPath, *inFilename, *outFilename, *outComment; in main() local
309 destPath=options[OPT_DESTDIR].value; in main()
312 destPath=NULL; in main()
344 isModified=(UBool)(sourcePath!=destPath); in main()
400 pkg->extractItem(destPath, outFilename, 0, outType); in main()
473 pkg->extractItems(destPath, *listPkg, outType); in main()
/external/lzma/C/Util/7z/
D7zMain.c573 const UInt16 *destPath = (const UInt16 *)name; in main() local
585 destPath = name + j + 1; in main()
590 MyCreateDir(destPath); in main()
594 else if (OutFile_OpenUtf16(&outFile, destPath)) in main()
650 SetFileAttributesW(destPath, attrib); in main()
/external/lzma/CPP/7zip/UI/FileManager/
DBrowseDialog.cpp743 FString destPath; in OnCreateDir() local
744 if (GetFullPath(us2fs(DirPrefix), us2fs(name), destPath)) in OnCreateDir()
746 if (!NDir::CreateComplexDir(destPath)) in OnCreateDir()
748 MessageBox_HResError((HWND)*this, GetNormalizedError(), fs2us(destPath)); in OnCreateDir()
796 FString destPath; in FinishOnOK() local
797 if (!GetFullPath(us2fs(DirPrefix), us2fs(s), destPath)) in FinishOnOK()
802 FilePath = fs2us(destPath); in FinishOnOK()
DExtractCallback.cpp684 const wchar_t *destPath, in AskWrite() argument
688 UString destPathResultTemp = destPath; in AskWrite()
695 FString destPathSys = us2fs(destPath); in AskWrite()
726 UString destPathSpec = destPath; in AskWrite()
/external/fonttools/Lib/fontTools/ufoLib/
D__init__.py978 def copyFromReader(self, reader, sourcePath, destPath): argument
987 destPath = fsdecode(destPath)
990 if self.fs.exists(destPath):
991 raise UFOLibError("A file named \"%s\" already exists." % destPath)
993 self.fs.makedirs(fs.path.dirname(destPath), recreate=True)
995 fs.copy.copy_dir(reader.fs, sourcePath, self.fs, destPath)
997 fs.copy.copy_file(reader.fs, sourcePath, self.fs, destPath)
1567 destPath = "%s/%s" % (IMAGES_DIRNAME, fsdecode(destFileName))
1568 self.copyFromReader(reader, sourcePath, destPath)
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPath.java524 private static void addPath(Path destPath, Path srcPath, AffineTransform transform) { in addPath() argument
525 if (destPath == null) { in addPath()
533 ShadowPath shadowDestPath = extract(destPath); in addPath()