Searched refs:newPath (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp133 char newPath[MAXPATHLEN]; local
134 strcpy(newPath, path);
135 strcat(newPath, "/");
136 strcat(newPath, ent->d_name);
139 scan(newPath);
145 scanFile(newPath);
/frameworks/base/graphics/java/android/renderscript/
H A DPath.java71 Path newPath = new Path(id, rs, p, null, null, quality);
72 return newPath;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java774 GeneralPath newPath = new GeneralPath();
778 newPath.append(iterator, false /*connect*/);
781 dst.mPath = newPath;
783 mPath = newPath;
803 GeneralPath newPath = new GeneralPath();
807 newPath.append(iterator, false /*connect*/);
810 dst.mPath = newPath;
812 mPath = newPath;
/frameworks/base/media/java/android/mtp/
H A DMtpDatabase.java728 String newPath = path.substring(0, lastSlash + 1) + newName;
729 File newFile = new File(newPath);
732 Log.w(TAG, "renaming "+ path + " to " + newPath + " failed");
738 values.put(Files.FileColumns.DATA, newPath);
748 Log.e(TAG, "Unable to update path for " + path + " to " + newPath);
757 if (oldFile.getName().startsWith(".") && !newPath.startsWith(".")) {
760 mMediaProvider.call(MediaStore.UNHIDE_CALL, newPath, null);
762 Log.e(TAG, "failed to unhide/rescan for " + newPath);
768 && !newPath.toLowerCase(Locale.US).equals(".nomedia")) {
772 Log.e(TAG, "failed to unhide/rescan for " + newPath);
[all...]
/frameworks/base/core/java/android/net/
H A DUri.java2177 String newPath;
2180 newPath = "/" + newSegment;
2182 newPath = oldPath + newSegment;
2184 newPath = oldPath + "/" + newSegment;
2187 return fromEncoded(newPath);

Completed in 491 milliseconds