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

1 2 3 4 5 6

  /frameworks/base/tools/aapt/
CrunchCache.cpp 39 String8 relativePath;
51 relativePath = String8(rPathPtr + offset);
53 if (forceOverwrite || needsUpdating(relativePath)) {
54 cu->processImage(mSourcePath.appendPathCopy(relativePath),
55 mDestPath.appendPathCopy(relativePath));
57 // crunchFile(relativePath);
62 mDestFiles.removeItem(mDestPath.appendPathCopy(relativePath));
96 bool CrunchCache::needsUpdating(String8 relativePath) const
101 time_t sourceDate = mSourceFiles.valueFor(mSourcePath.appendPathCopy(relativePath));
102 time_t destDate = mDestFiles.valueFor(mDestPath.appendPathCopy(relativePath));
    [all...]
  /external/chromium_org/third_party/skia/tools/
skdiff_html.cpp 182 const SkString& relativePath, bool local) {
191 resource.fFullPath.prepend(relativePath);
207 resource.fFullPath.prepend(relativePath);
212 static void print_diff_row(SkFILEWStream* stream, DiffRecord& diff, const SkString& relativePath) {
216 print_diff_resource_cell(stream, diff.fWhite, relativePath, true);
217 print_diff_resource_cell(stream, diff.fDifference, relativePath, true);
218 print_diff_resource_cell(stream, diff.fBase, relativePath, false);
219 print_diff_resource_cell(stream, diff.fComparison, relativePath, false);
256 SkString relativePath;
261 relativePath.append(".." PATH_DIV_STR)
    [all...]
  /external/skia/tools/
skdiff_html.cpp 182 const SkString& relativePath, bool local) {
191 resource.fFullPath.prepend(relativePath);
207 resource.fFullPath.prepend(relativePath);
212 static void print_diff_row(SkFILEWStream* stream, DiffRecord& diff, const SkString& relativePath) {
216 print_diff_resource_cell(stream, diff.fWhite, relativePath, true);
217 print_diff_resource_cell(stream, diff.fDifference, relativePath, true);
218 print_diff_resource_cell(stream, diff.fBase, relativePath, false);
219 print_diff_resource_cell(stream, diff.fComparison, relativePath, false);
256 SkString relativePath;
261 relativePath.append(".." PATH_DIV_STR)
    [all...]
  /external/smali/util/src/test/java/org/jf/util/
PathUtilTest.java 43 File relativePath = new File(roots[1] + "some" + File.separatorChar + "dir" + File.separatorChar + "test.txt");
45 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
47 Assert.assertEquals(path, relativePath.getPath());
56 File relativePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar + "test.txt");
58 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
71 File relativePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar);
73 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
83 File relativePath = new File(roots[0] + "some" + File.separatorChar + "dir");
85 String path = PathUtil.getRelativeFileInternal(basePath, relativePath);
95 File relativePath = new File(roots[0] + "some" + File.separatorChar + "dir" + File.separatorChar)
    [all...]
  /prebuilts/devtools/adt/lib/
sdktestutils.jar 
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
FileInputType.cpp 242 String relativePath = files[i].path.substring(rootLength).replace('\\', '/');
243 fileList->append(File::createWithRelativePath(files[i].path, relativePath));
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
FontFamily_Delegate.java 191 String relativePath = path.substring(SYSTEM_FONTS.length());
192 File f = new File(sFontLocation, relativePath);
204 String.format("Unable to load font %1$s", relativePath),
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 180 path = relativePath(path, spec.substring(pos, nextPos));
200 private static String relativePath(String base, String path) {
URI.java     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalAlbum.java 299 String relativePath = "/";
301 relativePath += BucketNames.CAMERA;
303 relativePath += BucketNames.DOWNLOAD;
305 relativePath += BucketNames.IMPORTED;
307 relativePath += BucketNames.SCREENSHOTS;
309 relativePath += BucketNames.EDITED_ONLINE_PHOTOS;
317 relativePath = null;
319 relativePath = path.substring(extStorage.getAbsolutePath().length());
322 return relativePath;
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
WidgetConfigure.java 167 String relativePath = null;
176 relativePath = LocalAlbum.getRelativePath(bucketId);
178 + ", relative path: " + relativePath);
181 WidgetDatabaseHelper.TYPE_ALBUM, albumPath, relativePath);
WidgetDatabaseHelper.java 50 private static final String FIELD_RELATIVE_PATH = "relativePath";
74 public String relativePath;
86 relativePath = cursor.getString(INDEX_RELATIVE_PATH);
182 db.execSQL("ALTER TABLE widgets ADD COLUMN relativePath TEXT");
218 public boolean setWidget(int id, int type, String albumPath, String relativePath) {
224 values.put(FIELD_RELATIVE_PATH, relativePath);
290 values.put(FIELD_RELATIVE_PATH, entry.relativePath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
CreateAssetSetWizard.java 104 String relativePath = entry.getKey();
105 IPath dest = new Path(relativePath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/
Draw9PatchEditor.java 91 IPath relativePath = null;
92 if ((relativePath = showSaveAsDialog()) != null) {
94 .getFile(relativePath));
124 IPath relativePath = null;
125 if ((relativePath = showSaveAsDialog()) != null) {
127 .getRoot().getFile(relativePath));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 543 IPath relativePath = path.makeRelativeTo(workspacePath);
544 IResource member = workspace.findMember(relativePath);
571 IPath relativePath = path.makeRelativeTo(workspacePath);
572 return workspace.findMember(relativePath);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
ProjectSetupBuilder.java 315 IPath relativePath = path.makeRelativeTo(root);
316 String relativeString = relativePath.toOSString();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 86 String relativePath;
173 IPath relativePath = iProject.getLocation().makeRelativeTo(
176 addItem(relativePath.toString(), iProject, -1);
213 addItem(data.relativePath, data.project, index - 1);
233 addItem(data.relativePath, data.project, index + 1);
296 data.relativePath);
332 * @param relativePath the relative path of the library entry
336 private void addItem(String relativePath, IProject project, int index) {
338 data.relativePath = relativePath;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringTestBase.java 264 String relativePath = ((String) data[i]).replace('/', File.separatorChar);
265 File to = new File(dir, relativePath);
  /prebuilts/devtools/tools/lib/
dvlib.jar 
  /prebuilts/gradle-plugin/com/android/tools/dvlib/22.2.0/
dvlib-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/dvlib/22.4.0/
dvlib-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/dvlib/22.4.2/
dvlib-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/dvlib/22.5.0/
dvlib-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/dvlib/22.5.1/
dvlib-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/dvlib/22.5.3/
dvlib-22.5.3.jar 

Completed in 3811 milliseconds

1 2 3 4 5 6