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

1 2

  /external/webkit/Source/WebCore/fileapi/
DOMFilePath.cpp 53 String newPath = path;
54 newPath.append(DOMFilePath::separator);
55 return newPath;
  /external/webkit/Tools/MIDLWrapper/
MIDLWrapper.cpp 56 wchar_t* newPath = new wchar_t[newPathLength + 1];
59 wchar_t* d = newPath;
68 envp[pathIndex] = newPath;
  /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/graphics/java/android/renderscript/
Path.java 71 Path newPath = new Path(id, rs, p, null, null, quality);
72 return newPath;
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 142 SmallString<200> newPath = StringRef(FE->getName());
143 fs::make_absolute(newPath);
144 infoOut << newPath << '\n';
240 void FileRemapper::remap(StringRef filePath, StringRef newPath) {
242 const FileEntry *newfile = FileMgr->getFile(newPath);
  /external/icu4c/test/intltest/
ucdtest.cpp 198 char newPath[256];
204 strcpy(newPath, pathToDataDirectory());
205 strcat(newPath, "unidata" U_FILE_SEP_STRING "DerivedCoreProperties.txt");
218 char *path=newPath;
219 u_parseDelimitedFile(newPath, ';', fields, 2, derivedPropsLineFn, this, &errorCode);
  /external/webkit/Source/WebCore/platform/graphics/cg/
PathCG.cpp 158 CGMutablePathRef newPath = CGPathCreateMutable();
159 CGPathAddPath(newPath, &translation, m_path);
161 m_path = newPath;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
ChooseConfigurationPage.java 211 String newPath = sb.toString();
212 mValues.folderPath = newPath;
213 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 217 IPath newPath = refactoring.getStyleFile(getProject()).getProjectRelativePath();
218 fileToGolden.put(newPath, styleFileName);
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/io/
MockFileOp.java 337 String newPath = getAgnosticAbsPath(newFile);
348 String newFolder = newPath + m.group(2);
361 String newFilePath = newPath + m.group(2);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/76/1/.cp/ant_tasks/
resources-ant.jar 
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 774 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;
  /external/clang/lib/StaticAnalyzer/Core/
HTMLDiagnostics.cpp 119 PathPieces newPath;
120 flattenPath(primaryPath, newPath, macro->subPieces);
121 macro->subPieces = newPath;
  /external/webkit/Source/WebCore/platform/graphics/skia/
SkiaFontWin.cpp 320 SkPath newPath;
321 newPath.addPath(*path, x + offsetX, y + offsetY);
322 canvas->drawPath(newPath, *paint);
  /libcore/luni/src/main/java/java/io/
File.java 185 char[] newPath = origPath.toCharArray();
186 int length = newPath.length;
189 char ch = newPath[i];
192 newPath[newLength++] = separatorChar;
196 newPath[newLength++] = ch;
205 return (newLength != length) ? new String(newPath, 0, newLength) : origPath;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
PhotoSelectionHandler.java 199 final String newPath = ContactPhotoUtils.pathForNewCameraPhoto(fileName);
205 new String[] { newPath },
210 final Intent intent = getCropImageIntent(newPath, croppedPath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 480 String newPath = sb.toString();
482 if (newPath.equals(currPath) && newPath.equals(mLastFolderUsedInCombo)) {
489 TreeSet<String> filePaths = mFolderCache.get(newPath);
494 IFolder folder = mProject.getFolder(newPath);
500 filePaths.add(newPath + name);
508 mFolderCache.put(newPath, filePaths);
511 currPath = newPath + leafName;
538 mLastFolderUsedInCombo = newPath;
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 729 String newPath = path.substring(0, lastSlash + 1) + newName;
730 File newFile = new File(newPath);
733 Log.w(TAG, "renaming "+ path + " to " + newPath + " failed");
739 values.put(Files.FileColumns.DATA, newPath);
749 Log.e(TAG, "Unable to update path for " + path + " to " + newPath);
758 if (oldFile.getName().startsWith(".") && !newPath.startsWith(".")) {
761 mMediaProvider.call(MediaStore.UNHIDE_CALL, newPath, null);
763 Log.e(TAG, "failed to unhide/rescan for " + newPath);
769 && !newPath.toLowerCase(Locale.US).equals(".nomedia")) {
773 Log.e(TAG, "failed to unhide/rescan for " + newPath);
    [all...]
  /external/icu4c/test/cintltst/
citertst.c     [all...]
  /frameworks/base/core/java/android/net/
Uri.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumPage.java 321 String newPath = FilterUtils.newClusterPath(basePath, clusterType);
323 data.putString(AlbumSetPage.KEY_MEDIA_PATH, newPath);
AlbumSetPage.java 260 String newPath = FilterUtils.switchClusterPath(basePath, clusterType);
262 data.putString(AlbumSetPage.KEY_MEDIA_PATH, newPath);
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverManager.java 577 String newPath = beamRoot + "beam-" + sdf.format(new Date());
578 File newFile = new File(newPath);
581 newPath = beamRoot + "beam-" + sdf.format(new Date()) + "-" +
583 newFile = new File(newPath);
    [all...]

Completed in 747 milliseconds

1 2