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

1 2 3 4 5 6 7 8 9

  /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);
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiUtils.java 229 * @param newPath new path
232 static boolean isAffectingActiveRoutingPath(int activePath, int newPath) {
243 int nibble = (newPath >> i) & 0xF;
246 newPath &= mask;
250 if (newPath == 0x0000) {
253 return isInActiveRoutingPath(activePath, newPath);
260 * @param newPath new path
263 static boolean isInActiveRoutingPath(int activePath, int newPath) {
265 // where the active nibble is not zero. For (activePath, newPath),
275 int nibbleNew = (newPath >> i) & 0xF
    [all...]
HdmiCecMessageBuilder.java 302 * @param newPath physical address of the new active routing path
305 static HdmiCecMessage buildRoutingChange(int src, int oldPath, int newPath) {
308 (byte) ((newPath >> 8) & 0xFF), (byte) (newPath & 0xFF)
HdmiCecLocalDeviceTv.java 410 int newPath = mService.portIdToPath(portId);
411 startRoutingControl(oldPath, newPath, true, callback);
415 void startRoutingControl(int oldPath, int newPath, boolean queryDevicePowerStatus,
418 if (oldPath == newPath) {
422 HdmiCecMessageBuilder.buildRoutingChange(mAddress, oldPath, newPath);
426 new RoutingControlAction(this, newPath, queryDevicePowerStatus, callback));
669 int newPath = mService.portIdToPath(getActivePortId());
670 setActivePath(newPath);
671 startRoutingControl(getActivePath(), newPath, false, null);
714 int newPath = HdmiUtils.twoBytesToInt(params, 2)
    [all...]
  /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);
  /frameworks/base/core/java/android/content/
UriMatcher.java 168 String newPath = path;
171 newPath = path.substring(1);
173 tokens = newPath.split("/");
  /external/chromium-trace/catapult/third_party/vinn/bin/
update_v8 167 def __init__(self, newPath):
168 self.newPath = newPath
172 os.chdir(self.newPath)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/76/1/.cp/ant_tasks/
resources-ant.jar 
  /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;
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 157 @Override public void link(String oldPath, String newPath) throws ErrnoException {
159 os.link(oldPath, newPath);
264 @Override public void rename(String oldPath, String newPath) throws ErrnoException {
266 os.rename(oldPath, newPath);
307 @Override public void symlink(String oldPath, String newPath) throws ErrnoException {
309 os.symlink(oldPath, newPath);
Os.java 99 public void link(String oldPath, String newPath) throws ErrnoException;
130 public void rename(String oldPath, String newPath) throws ErrnoException;
160 public void symlink(String oldPath, String newPath) throws ErrnoException;
  /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);
  /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);
  /external/jetty/src/java/org/eclipse/jetty/servlets/
PutFilter.java 295 String newPath = URIUtil.canonicalPath(request.getHeader("new-uri"));
296 if (newPath == null)
303 if (contextPath != null && !newPath.startsWith(contextPath))
308 String newInfo = 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);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 857 GeneralPath newPath = new GeneralPath();
861 newPath.append(iterator, false /*connect*/);
862 mPath = newPath;
881 GeneralPath newPath = new GeneralPath();
885 newPath.append(iterator, false /*connect*/);
888 dst.mPath = newPath;
890 mPath = newPath;
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 784 String newPath = path.substring(0, lastSlash + 1) + newName;
785 File newFile = new File(newPath);
788 Log.w(TAG, "renaming "+ path + " to " + newPath + " failed");
794 values.put(Files.FileColumns.DATA, newPath);
804 Log.e(TAG, "Unable to update path for " + path + " to " + newPath);
813 if (oldFile.getName().startsWith(".") && !newPath.startsWith(".")) {
816 mMediaProvider.call(MediaStore.UNHIDE_CALL, newPath, null);
818 Log.e(TAG, "failed to unhide/rescan for " + newPath);
824 && !newPath.toLowerCase(Locale.US).equals(".nomedia")) {
828 Log.e(TAG, "failed to unhide/rescan for " + newPath);
    [all...]
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 139 SmallString<200> newPath = StringRef(FE->getName());
140 fs::make_absolute(newPath);
141 infoOut << newPath << '\n';
  /external/dng_sdk/source/
dng_xmp_sdk.h 216 bool newPath = true);
  /external/skia/resources/
test.lua 30 local path = Sk.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);
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-decoration-model/1.0/
doxia-decoration-model-1.0.jar 
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
VectorDrawable_Delegate.java 851 VPath_Delegate newPath;
853 newPath = new VFullPath_Delegate((VFullPath_Delegate) copyChild);
855 newPath = new VClipPath_Delegate((VClipPath_Delegate) copyChild);
859 mChildren.add(newPath);
860 if (newPath.mPathName != null) {
861 targetsMap.put(newPath.mPathName, newPath);
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/beam/
BeamTransferManager.java 528 String newPath = beamRoot + "beam-" + sdf.format(new Date());
529 File newFile = new File(newPath);
532 newPath = beamRoot + "beam-" + sdf.format(new Date()) + "-" +
534 newFile = new File(newPath);

Completed in 1373 milliseconds

1 2 3 4 5 6 7 8 9