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

1 2 3 4

  /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...]
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
ManagerService.java 89 Log.d(LOG_TAG,"mIncomingHandler: " + msg.getData().getString("relativePath"));
209 String relativePath = results.getRelativePath();
210 results.setExpectedTextResult(getExpectedTextResult(relativePath));
211 results.setExpectedTextResultPath(getExpectedTextResultPath(relativePath));
212 results.setExpectedImageResult(getExpectedImageResult(relativePath));
213 results.setExpectedImageResultPath(getExpectedImageResultPath(relativePath));
246 public String getExpectedTextResult(String relativePath) {
247 byte[] result = getExpectedResult(relativePath, TEXT_RESULT_EXTENSION);
254 public byte[] getExpectedImageResult(String relativePath) {
255 return getExpectedResult(relativePath, IMAGE_RESULT_EXTENSION)
    [all...]
FileFilter.java 264 * @param relativePath
269 public static URL getUrl(String relativePath, boolean allowHttps) {
276 if (relativePath.startsWith(HTTP_TESTS_PATH)) {
277 relativePath = relativePath.substring(HTTP_TESTS_PATH.length());
278 if (relativePath.startsWith(SSL_PATH) && allowHttps) {
282 relativePath = "LayoutTests/" + relativePath;
286 return new URL(urlBase + relativePath);
300 * @param relativePath
    [all...]
CrashedDummyResult.java 31 public CrashedDummyResult(String relativePath) {
32 mRelativePath = relativePath;
117 public void setExpectedImageResultPath(String relativePath) {
122 public void setExpectedTextResultPath(String relativePath) {
TestsListPreloaderThread.java 80 String relativePath;
83 relativePath = directoriesList.removeFirst();
85 List<String> dirRelativePaths = FsUtils.getLayoutTestsDirContents(relativePath, false, true);
95 List<String> testRelativePaths = FsUtils.getLayoutTestsDirContents(relativePath, false, false);
106 * Previously: mSummarizer.addSkippedTest(relativePath);
Summarizer.java 234 String relativePath = result.getRelativePath();
242 if (mFileFilter.isFail(relativePath)) {
248 if (mFileFilter.isFail(relativePath)) {
436 String relativePath;
450 relativePath = result.getRelativePath();
460 id = relativePath.replace(File.separator, ":");
467 html.append("<span class=\"path\">" + relativePath + "</span>");
491 html.append("<a href=\"" + getViewSourceUrl(relativePath).toString() + "\"");
567 private static final URL getViewSourceUrl(String relativePath) {
572 relativePath);
    [all...]
TextResult.java 59 public TextResult(String relativePath) {
60 mRelativePath = relativePath;
78 mRelativePath = bundle.getString("relativePath");
147 public void setExpectedImageResultPath(String relativePath) {
158 public void setExpectedTextResultPath(String relativePath) {
159 mExpectedResultPath = relativePath;
247 bundle.putString("relativePath", mRelativePath);
AbstractResult.java 157 public abstract void setExpectedImageResultPath(String relativePath);
163 public abstract void setExpectedTextResultPath(String relativePath);
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/scriptsupport/
Starter.java 47 String relativePath = runner.getTestsRelativePath();
54 intent.putExtra(TestsListActivity.EXTRA_TEST_PATH, relativePath);
  /external/webkit/Source/WebCore/fileapi/
File.h 52 static PassRefPtr<File> create(const String& relativePath, const String& path)
54 return adoptRef(new File(relativePath, path));
83 File(const String& relativePath, const String& path);
File.cpp 64 File::File(const String& relativePath, const String& path)
67 , 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...]
  /external/webkit/Source/WebCore/platform/sql/chromium/
SQLiteFileSystemChromiumWin.cpp 115 // relativePath - the relative path.
118 int chromiumFullPathname(sqlite3_vfs* vfs, const char* relativePath,
122 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath);
SQLiteFileSystemChromiumPosix.cpp 143 // relativePath - the relative path.
146 int chromiumFullPathname(sqlite3_vfs* vfs, const char* relativePath,
150 sqlite3_snprintf(vfs->mxPathname, absolutePath, "%s", relativePath);
  /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/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")
  /external/webkit/Tools/BuildSlaveSupport/
test-result-archive 112 relativePath = os.path.join(dirPath, fileName)
113 print "Adding", relativePath
114 zipper.write(relativePath)
  /prebuilts/devtools/adt/lib/
sdktestutils.jar 
  /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/tests/DumpRenderTree2/src/com/android/dumprendertree2/ui/
DirListActivity.java 93 public LoadListItemsThread(String relativePath, Handler handler) {
94 mRelativePath = relativePath;
114 public ListItem(String relativePath, boolean isDirectory) {
115 mRelativePath = relativePath;
116 mName = new File(relativePath).getName();
216 arguments.putString("relativePath", item.getRelativePath());
230 private void runAllTestsUnder(String relativePath) {
234 intent.putExtra(TestsListActivity.EXTRA_TEST_PATH, relativePath);
298 runAllTestsUnder(args.getString("relativePath"));
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Typeface_Delegate.java 150 String relativePath = path.substring(SYSTEM_FONTS.length());
151 File f = new File(sFontLoader.getOsFontsLocation(), relativePath);
161 String.format("Unable to load font %1$s", relativePath),
  /external/webkit/Source/WebCore/html/
FileInputType.cpp 180 String relativePath = paths[i].substring(1 + rootPath.length()).replace('\\', '/');
181 m_fileList->append(File::create(relativePath, paths[i]));

Completed in 1666 milliseconds

1 2 3 4