Searched refs:newPath (Results 1 - 6 of 6) 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/core/java/android/content/
H A DUriMatcher.java169 String newPath = path;
172 newPath = path.substring(1);
174 tokens = PATH_SPLIT_PATTERN.split(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.java736 String newPath = path.substring(0, lastSlash + 1) + newName;
737 File newFile = new File(newPath);
740 Log.w(TAG, "renaming "+ path + " to " + newPath + " failed");
746 values.put(Files.FileColumns.DATA, newPath);
756 Log.e(TAG, "Unable to update path for " + path + " to " + newPath);
765 if (oldFile.getName().startsWith(".") && !newPath.startsWith(".")) {
768 mMediaProvider.call(mPackageName, MediaStore.UNHIDE_CALL, newPath, null);
770 Log.e(TAG, "failed to unhide/rescan for " + newPath);
776 && !newPath.toLowerCase(Locale.US).equals(".nomedia")) {
780 Log.e(TAG, "failed to unhide/rescan for " + newPath);
[all...]
/frameworks/base/core/java/android/net/
H A DUri.java2178 String newPath;
2181 newPath = "/" + newSegment;
2183 newPath = oldPath + newSegment;
2185 newPath = oldPath + "/" + newSegment;
2188 return fromEncoded(newPath);

Completed in 786 milliseconds