HomeSort by relevance Sort by last modified time
    Searched defs:newPath (Results 1 - 25 of 239) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/base/core/java/android/content/
UriMatcher.java 168 String newPath = path;
171 newPath = path.substring(1);
173 tokens = newPath.split("/");
  /frameworks/av/media/libstagefright/id3/
testid3.cpp 133 char newPath[MAXPATHLEN];
134 strcpy(newPath, path);
135 strcat(newPath, "/");
136 strcat(newPath, ent->d_name);
139 scan(newPath);
145 scanFile(newPath);
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 139 SmallString<200> newPath = StringRef(FE->getName());
140 fs::make_absolute(newPath);
141 infoOut << newPath << '\n';
  /frameworks/base/tools/aapt2/link/
TableMerger.cpp 288 std::string newPath = prefix.to_string() + mangled_entry + suffix.to_string();
290 util::make_unique<FileReference>(master_table_->string_pool.MakeRef(newPath));
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileAwareUriMatcher.java 70 String newPath = path;
73 newPath = path.substring(1);
75 String[] tokens = PATH_SPLIT_PATTERN.split(newPath);
  /packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/
GalleryWidgetMigrator.java 160 String newPath = NEW_EXT_PATH + entry.relativePath;
161 int newBucketId = GalleryUtils.getBucketId(newPath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
ChooseConfigurationPage.java 212 String newPath = sb.toString();
213 mValues.folderPath = newPath;
214 mWsFolderPathTextField.setText(newPath);
NewXmlFileCreationPage.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractIncludeRefactoringTest.java 154 IPath newPath = sourcePath.removeLastSegments(1).append(layoutName + DOT_XML);
155 fileToGolden.put(newPath, layoutName + DOT_XML);
ExtractStyleRefactoringTest.java 218 IPath newPath = refactoring.getStyleFile(getProject()).getProjectRelativePath();
219 fileToGolden.put(newPath, styleFileName);
  /frameworks/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 863 GeneralPath newPath = new GeneralPath();
867 newPath.append(iterator, false /*connect*/);
868 mPath = newPath;
887 GeneralPath newPath = new GeneralPath();
891 newPath.append(iterator, false /*connect*/);
894 dst.mPath = newPath;
896 mPath = newPath;
  /frameworks/base/core/jni/
android_graphics_drawable_VectorDrawable.cpp 47 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath();
48 return reinterpret_cast<jlong>(newPath);
54 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(*srcFullPath);
55 return reinterpret_cast<jlong>(newPath);
59 VectorDrawable::ClipPath* newPath = new VectorDrawable::ClipPath();
60 return reinterpret_cast<jlong>(newPath);
66 VectorDrawable::ClipPath* newPath = new VectorDrawable::ClipPath(*srcClipPath);
67 return reinterpret_cast<jlong>(newPath);
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
TreeFinder.java 706 ASTPath newPath = ASTPath.empty();
710 newPath = newPath.extend(astPath.get(j));
715 newPath = newPath.extend(lastEntry);
717 newPath = newPath.extend(astPath.get(j));
720 astPath = newPath;
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecLocalDevicePlayback.java 270 int newPath = HdmiUtils.twoBytesToInt(message.getParams(), 2);
271 maySetActiveSource(newPath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 479 String newPath = sb.toString();
481 if (newPath.equals(currPath) && newPath.equals(mLastFolderUsedInCombo)) {
488 TreeSet<String> filePaths = mFolderCache.get(newPath);
493 IFolder folder = mProject.getFolder(newPath);
499 filePaths.add(newPath + name);
507 mFolderCache.put(newPath, filePaths);
510 currPath = newPath + leafName;
537 mLastFolderUsedInCombo = newPath;
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
BrowsedMediaPlayer.java 390 String newPath = "";
406 if ((newPath = byteToString(folderUid)) == null) {
409 } else if (!isBrowsableFolderDn(newPath)) {
413 } else if (mPathStack.peek().equals(newPath)) {
418 mMediaBrowser.subscribe(newPath, mFolderItemsCb);
420 mPathStack.push(newPath);
432 newPath = mPathStack.peek();
433 mMediaBrowser.subscribe(newPath, mFolderItemsCb);
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/beam/
BeamTransferManager.java 542 String newPath = beamRoot + "beam-" + sdf.format(new Date());
543 File newFile = new File(newPath);
546 newPath = beamRoot + "beam-" + sdf.format(new Date()) + "-" +
548 newFile = new File(newPath);
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-decoration-model/1.0/
doxia-decoration-model-1.0.jar 
  /external/pdfium/core/fxge/
cfx_renderdevice.cpp 577 CFX_PathData newPath;
581 !!m_pDeviceDriver->GetDriverType(), &newPath,
598 m_pDeviceDriver->DrawPath(&newPath, pMatrix, &graphState, 0, strokecolor,
    [all...]
  /external/robolectric/v1/src/main/java/android/net/
Uri__FromAndroid.java     [all...]
  /frameworks/base/core/java/android/net/
Uri.java     [all...]
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 564 Path newPath = obj.getPath();
565 boolean success = oldPath.toFile().renameTo(newPath.toFile());
568 Os.access(newPath.toString(), OsConstants.F_OK);
582 values.put(Files.FileColumns.DATA, newPath.toString());
595 if (oldPath.getFileName().startsWith(".") && !newPath.startsWith(".")) {
598 mMediaProvider.call(MediaStore.UNHIDE_CALL, newPath.toString(), null);
600 Log.e(TAG, "failed to unhide/rescan for " + newPath);
606 && !newPath.getFileName().toString().toLowerCase(Locale.US).equals(NO_MEDIA)) {
611 Log.e(TAG, "failed to unhide/rescan for " + newPath);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumPage.java 349 String newPath = FilterUtils.newClusterPath(basePath, clusterType);
351 data.putString(AlbumSetPage.KEY_MEDIA_PATH, newPath);
AlbumSetPage.java 312 String newPath = FilterUtils.switchClusterPath(basePath, clusterType);
314 data.putString(AlbumSetPage.KEY_MEDIA_PATH, newPath);
  /external/pdfium/core/fxge/skia/
fx_skia_device.cpp     [all...]

Completed in 1019 milliseconds

1 2 3 4 5 6 7 8 910