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

1 2

  /packages/apps/Browser/src/com/android/browser/provider/
SnapshotProvider.java 123 File oldPath = getOldDatabasePath(getContext());
124 if (oldPath.exists()) {
126 if (!oldPath.renameTo(dbPath)) {
128 FileUtils.copyFile(oldPath, dbPath);
131 oldPath.delete();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ContentProviderBasedProjectDelegate.js 182 var oldPath = path;
186 this._contentProviders[newPath] = this._contentProviders[oldPath];
187 delete this._contentProviders[oldPath];
Workspace.js 361 var oldPath = uiSourceCode.path();
363 this._uiSourceCodesMap[newPath] = this._uiSourceCodesMap[oldPath];
364 delete this._uiSourceCodesMap[oldPath];
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/editors/
TraceviewEditor.java 158 IPath oldPath = URIUtil.toPath(fileStoreEditorInput.getURI());
159 if (oldPath != null) {
160 dialog.setFileName(oldPath.lastSegment());
161 dialog.setFilterPath(oldPath.toOSString());
  /external/yaffs2/yaffs2/direct/
yaffsfs.h 183 int yaffs_rename(const char *oldPath, const char *newPath) ;
203 int yaffs_symlink(const char *oldpath, const char *newpath);
206 int yaffs_link(const char *oldpath, const char *newpath);
yaffsfs.c 762 int yaffs_rename(const char *oldPath, const char *newPath)
774 olddir = yaffsfs_FindDirectory(NULL,oldPath,&oldname,0);
776 obj = yaffsfs_FindObject(NULL,oldPath,0);
1352 int yaffs_symlink(const char *oldpath, const char *newpath)
1362 obj = yaffs_MknodSymLink(parent,name,mode,0,0,oldpath);
1410 int yaffs_link(const char *oldpath, const char *newpath)
1412 // Creates a link called newpath to existing oldpath
1420 obj = yaffsfs_FindObject(NULL,oldpath,0);
  /external/robolectric/src/main/java/android/net/
Uri__FromAndroid.java     [all...]
  /frameworks/base/core/java/android/net/
Uri.java     [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t052import.py 10 self.oldPath = sys.path[:]
15 sys.path = self.oldPath
    [all...]
t054main.py 13 self.oldPath = sys.path[:]
18 sys.path = self.oldPath
  /frameworks/base/media/java/android/media/
MiniThumbFile.java 90 String oldPath = randomAccessFilePath(MINI_THUMB_DATA_FILE_VERSION - 1);
91 File oldFile = new File(oldPath);
  /packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/
GalleryWidgetMigrator.java 138 String oldPath = oldExtStorage + path.substring(RELATIVE_PATH_START);
139 int oldBucketId = GalleryUtils.getBucketId(oldPath);
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 111 public void rename(String oldPath, String newPath) throws ErrnoException { os.rename(oldPath, newPath); }
135 public void symlink(String oldPath, String newPath) throws ErrnoException { os.symlink(oldPath, newPath); }
Os.java 104 public void rename(String oldPath, String newPath) throws ErrnoException;
128 public void symlink(String oldPath, String newPath) throws ErrnoException;
Posix.java 145 public native void rename(String oldPath, String newPath) throws ErrnoException;
179 public native void symlink(String oldPath, String newPath) throws ErrnoException;
  /external/lzma/CPP/Windows/
FileDir.cpp 505 static void AddTrailingDots(LPCWSTR oldPath, UString &newPath)
507 int len = (int)wcslen(oldPath);
509 for (i = len; i > 0 && oldPath[i - 1] == '.'; i--);
512 UString oldName = GetLastPart(oldPath);
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 549 PathDiagnosticCallPiece(PathPieces &oldPath, const Decl *caller)
551 NoExit(true), path(oldPath) {}
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 351 File oldPath = new File(mImage.getDataPath());
352 File directory = new File(oldPath.getParent());
355 String fileName = oldPath.getName();
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp     [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPv3Client.java 978 * @param oldPath See the {@link SFTPv3Client comment} for the class for more details.
982 public void mv(String oldPath, String newPath) throws IOException
987 tw.writeString(oldPath, charsetName);
    [all...]
  /external/chromium_org/third_party/skia/src/device/xps/
SkXPSDevice.cpp     [all...]
  /external/skia/src/device/xps/
SkXPSDevice.cpp     [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java     [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
webkitdirs.pm     [all...]
  /external/chromium_org/third_party/sqlite/src/src/
os_unix.c     [all...]

Completed in 627 milliseconds

1 2