/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...] |
CrunchCache.h | 84 bool needsUpdating(String8 relativePath) const;
|
/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...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
image_writer_private_custom_bindings.js | 15 var relativePath = $String.slice(fileEntry.fullPath, 1); 16 return [device, fileSystemName, relativePath, callback];
|
/external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
File.h | 58 static PassRefPtr<File> create(const String& path, const String& name, const String& relativePath, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle> blobDataHandle) 60 return adoptRef(new File(path, name, relativePath, hasSnaphotData, size, lastModified, blobDataHandle)); 63 static PassRefPtr<File> createWithRelativePath(const String& path, const String& relativePath); 110 File(const String& path, const String& name, const String& relativePath, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle>);
|
File.cpp | 87 PassRefPtr<File> File::createWithRelativePath(const String& path, const String& relativePath) 90 file->m_relativePath = relativePath; 116 File::File(const String& path, const String& name, const String& relativePath, bool hasSnaphotData, uint64_t size, double lastModified, PassRefPtr<BlobDataHandle> blobDataHandle) 118 , m_hasBackingFile(!path.isEmpty() || !relativePath.isEmpty()) 123 , m_relativePath(relativePath)
|
/external/srec/portable/include/ |
PFileSystemImpl.h | 97 * @param relativePath [out] Relative path associated with match. Set to NULL if this value shouldn't be returned. 99 * @return ESR_INVALID_ARGUMENT if path, fileSystem or relativePath is null; ESR_INVALID_STATE if no 102 PORTABLE_API ESR_ReturnCode PFileSystemGetFS(const LCHAR* path, PFileSystem** fileSystem, LCHAR* relativePath);
|
/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...] |
/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;
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/ |
SQLiteFileSystemWin.cpp | 115 // relativePath - the relative path. 118 int chromiumFullPathname(sqlite3_vfs* vfs, const char* relativePath, 122 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath);
|
SQLiteFileSystemPosix.cpp | 143 // relativePath - the relative path. 146 int chromiumFullPathname(sqlite3_vfs* vfs, const char* relativePath, 150 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath);
|
/external/smali/smali/ |
build.gradle | 90 args '-fo', relativePath("${antlrOutput}/org/jf/smali") 103 args '-fo', relativePath("${testAntlrOutput}/org/jf/smali") 117 args '-d', relativePath("${jflexOutput}/org/jf/smali")
|
/prebuilts/devtools/adt/lib/ |
sdktestutils.jar | |
/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/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...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Typeface_Delegate.java | 153 String relativePath = path.substring(SYSTEM_FONTS.length()); 154 File f = new File(sFontLoader.getOsFontsLocation(), relativePath); 164 String.format("Unable to load font %1$s", 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);
|
/packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/ |
GalleryWidgetMigrator.java | 85 // Check each entry's relativePath. If exists, update bucket id using relative 94 if (entry.relativePath != null && entry.relativePath.length() > 0) { 150 entry.relativePath = path.substring(RELATIVE_PATH_START); 160 String newPath = NEW_EXT_PATH + entry.relativePath;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplateManager.java | 99 * @param relativePath the relative path 103 public static File getTemplateLocation(@NonNull File root, @NonNull String relativePath) { 109 + relativePath.replace('/', File.separatorChar)); 121 * @param relativePath the relative path 125 public static File getTemplateLocation(@NonNull String relativePath) { 129 relativePath.replace('/', File.separatorChar));
|
/external/clang/utils/ |
FindSpecRefs | 882 relativePath = item.path[len(root):] 883 if relativePath.startswith('/'): 884 relativePath = relativePath[1:] 887 filename = os.path.basename(relativePath) [all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
SystemIDResolver.java | 100 * @param relativePath A relative path 103 private static String getAbsolutePathFromRelativePath(String relativePath) 105 return new File(relativePath).getAbsolutePath();
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
SystemIDResolver.java | 93 * @param relativePath A relative path 96 private static String getAbsolutePathFromRelativePath(String relativePath) 98 return new File(relativePath).getAbsolutePath();
|
/prebuilts/devtools/tools/lib/ |
dvlib.jar | |
/prebuilts/gradle-plugin/com/android/tools/dvlib/22.2.0/ |
dvlib-22.2.0.jar | |