/cts/tools/vm-tests-tf/src/util/build/ |
JavacBuildStep.java | 28 private final String destPath; 31 public JavacBuildStep(String destPath, String classPath) { 32 this.destPath = destPath; 50 File destFile = new File(destPath); 61 commandLine[3] = destPath; 80 return destPath.equals(other.destPath) 89 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode();
|
/frameworks/base/media/java/android/mtp/ |
MtpDevice.java | 230 * @param destPath path to destination for the file transfer. 235 public boolean importFile(int objectHandle, String destPath) { 236 return native_import_file(objectHandle, destPath); 254 private native boolean native_import_file(int objectHandle, String destPath);
|
/frameworks/base/tools/aapt/ |
CrunchCache.h | 32 CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff); 41 * them to the cached versions in the destPath. If the optional
|
CrunchCache.cpp | 18 CrunchCache::CrunchCache(String8 sourcePath, String8 destPath, FileFinder* ff) 19 : mSourcePath(sourcePath), mDestPath(destPath), mSourceFiles(0), mDestFiles(0), mFileFinder(ff)
|
/external/chromium_org/third_party/WebKit/Source/core/platform/ |
AsyncFileSystem.h | 68 // Moves a file or directory from srcPath to destPath. 71 virtual void move(const KURL& srcPath, const KURL& destPath, PassOwnPtr<AsyncFileSystemCallbacks>) = 0; 73 // Copies a file or directory from srcPath to destPath. 76 virtual void copy(const KURL& srcPath, const KURL& destPath, PassOwnPtr<AsyncFileSystemCallbacks>) = 0;
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebFileSystem.h | 58 // Moves a file or directory at |srcPath| to |destPath|. 61 virtual void move(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); } 63 // Copies a file or directory at |srcPath| to |destPath|. 66 virtual void copy(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); }
|
/external/chromium_org/third_party/icu/source/tools/icupkg/ |
icupkg.cpp | 223 const char *pname, *sourcePath, *destPath, *inFilename, *outFilename, *outComment; 260 destPath=options[OPT_DESTDIR].value; 263 destPath=NULL; 290 isModified=(UBool)(sourcePath!=destPath); 346 pkg->extractItem(destPath, outFilename, 0, outType); 407 pkg->extractItems(destPath, *listPkg, outType);
|
/external/icu4c/tools/icupkg/ |
icupkg.cpp | 255 const char *pname, *sourcePath, *destPath, *inFilename, *outFilename, *outComment; 307 destPath=options[OPT_DESTDIR].value; 310 destPath=NULL; 342 isModified=(UBool)(sourcePath!=destPath); 398 pkg->extractItem(destPath, outFilename, 0, outType); 471 pkg->extractItems(destPath, *listPkg, outType);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WorkerFileSystemCallbacksBridge.h | 87 void postMoveToMainThread(WebFileSystem*, const WebCore::KURL& srcPath, const WebCore::KURL& destPath, const String& mode); 88 void postCopyToMainThread(WebFileSystem*, const WebCore::KURL& srcPath, const WebCore::KURL& destPath, const String& mode); 112 static void moveOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem*, const WebCore::KURL& srcPath, const WebCore::KURL& destPath, PassRefPtr<WorkerFileSystemCallbacksBridge>, const String& mode); 113 static void copyOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem*, const WebCore::KURL& srcPath, const WebCore::KURL& destPath, PassRefPtr<WorkerFileSystemCallbacksBridge>, const String& mode);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/ |
AaptParserTest.java | 155 private void checkRanges(String name, String destPath, String aaptError, 159 IFile file = getTestDataFile(project, name, destPath);
|
/external/chromium_org/build/android/ant/ |
create-test-jar.js | 28 var destPath = File(project.getProperty("TEST_JAR_PATH")); 29 jarTask.setDestFile(destPath);
|
/frameworks/av/media/mtp/ |
MtpDevice.h | 102 bool readObject(MtpObjectHandle handle, const char* destPath, int group,
|
MtpDevice.cpp | 668 bool MtpDevice::readObject(MtpObjectHandle handle, const char* destPath, int group, int perm) { 669 ALOGD("readObject: %s", destPath); 670 int fd = ::open(destPath, O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); 672 ALOGE("open failed for %s", destPath);
|
/cts/tools/dasm/src/dasm/ |
Main.java | 43 private static String destPath = null; 115 String dest_dir = destPath; 212 destPath = args[i];
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
UsabilityStudyLogUtils.java | 212 final String destPath = Environment.getExternalStorageDirectory() 214 final File destFile = new File(destPath); 242 intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + destPath));
|
/external/lzma/C/Util/7z/ |
7zMain.c | 434 const UInt16 *destPath = (const UInt16 *)name;
445 destPath = name + j + 1;
450 MyCreateDir(destPath);
454 else if (OutFile_OpenUtf16(&outFile, destPath))
475 SetFileAttributesW(destPath, f->Attrib);
|
/frameworks/native/cmds/rawbu/ |
backup.cpp | 373 static int backup_data(const char* destPath) 377 FILE* fh = fopen(destPath, "w"); 380 destPath, strerror(errno)); 384 printf("Backing up /data to %s...\n", destPath); 387 backupFilePath = strdup(destPath); 399 destPath, strerror(errno)); 405 destPath, strerror(errno));
|
/external/chromium/chrome/browser/resources/file_manager/js/ |
harness.js | 130 var destPath = currentSrc.name.replace(/\^\^/g, '/'); 131 self.getOrCreateFile(destPath, onFileFound, 132 util.flog('Error finding path: ' + destPath));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/ |
AddSupportJarAction.java | 513 File destPath = loc.toFile(); 517 if (!f.isFile(destPath) || !f.isSameFile(jarPath, destPath)) { 518 f.copyFile(jarPath, destPath);
|
/external/chromium_org/third_party/skia/src/animator/ |
SkMatrixParts.cpp | 244 SkPath& destPath = destination->getPath(); 245 int dstPts = destPath.getPoints(dst, 4);
|
/external/skia/src/animator/ |
SkMatrixParts.cpp | 244 SkPath& destPath = destination->getPath(); 245 int dstPts = destPath.getPoints(dst, 4);
|
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
MtpClient.java | 405 * @param destPath path to destination for the file transfer. 410 public boolean importFile(String deviceName, int objectHandle, String destPath) { 415 return device.importFile(objectHandle, destPath);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
AdtProjectTest.java | 216 String destPath) throws Exception { 217 return getTestDataFile(project, sourceName, destPath, false); 221 String destPath, boolean overwrite) throws Exception { 222 String[] split = destPath.split("/"); //$NON-NLS-1$ 227 name = destPath;
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
MtpClient.java | 431 * @param destPath path to destination for the file transfer. 436 public boolean importFile(String deviceName, int objectHandle, String destPath) { 441 return device.importFile(objectHandle, destPath);
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Path_Delegate.java | 525 private static void addPath(int destPath, int srcPath, AffineTransform transform) { 526 Path_Delegate destPathDelegate = sManager.getDelegate(destPath);
|