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

1 2

  /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 228 * @param destPath path to destination for the file transfer.
233 public boolean importFile(int objectHandle, String destPath) {
234 return native_import_file(objectHandle, destPath);
252 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/public/platform/
WebFileSystem.h 79 // Moves a file or directory at |srcPath| to |destPath|.
82 virtual void move(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks) { BLINK_ASSERT_NOT_REACHED(); }
84 // Copies a file or directory at |srcPath| to |destPath|.
87 virtual void copy(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks) { BLINK_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/icu/icu4c/source/tools/icupkg/
icupkg.cpp 257 const char *pname, *sourcePath, *destPath, *inFilename, *outFilename, *outComment;
309 destPath=options[OPT_DESTDIR].value;
312 destPath=NULL;
344 isModified=(UBool)(sourcePath!=destPath);
400 pkg->extractItem(destPath, outFilename, 0, outType);
473 pkg->extractItems(destPath, *listPkg, outType);
  /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);
  /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];
  /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_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;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddSupportJarAction.java 606 File destPath = loc.toFile();
610 if (!f.isFile(destPath) || !f.isSameFile(jarPath, destPath)) {
611 f.copyFile(jarPath, 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 536 private static void addPath(long destPath, long srcPath, AffineTransform transform) {
537 Path_Delegate destPathDelegate = sManager.getDelegate(destPath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ApplicationInfoPage.java 543 IPath destPath = path.removeLastSegments(1).append(mValues.testProjectName);
544 File dest = destPath.toFile();
  /external/chromium_org/ui/file_manager/file_manager/background/js/
file_operation_manager.js 962 function(destPath) {
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.jdt.compiler.apt/1.0.600.v20130530-1010/
org.eclipse.jdt.compiler.apt-1.0.600.v20130530-1010.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 

Completed in 1057 milliseconds

1 2