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

  /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...]
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
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);
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...]
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...]
  /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/html/
FileInputType.cpp 180 String relativePath = paths[i].substring(1 + rootPath.length()).replace('\\', '/');
181 m_fileList->append(File::create(relativePath, paths[i]));
  /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),
  /libcore/luni/src/main/java/java/net/
URLStreamHandler.java 178 path = relativePath(path, spec.substring(pos, nextPos));
198 private static String relativePath(String base, String path) {
URI.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 326 IPath relativePath = path.makeRelativeTo(workspacePath);
327 IResource member = workspace.findMember(relativePath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
CreateAssetSetWizard.java 107 String relativePath = entry.getKey();
108 IPath dest = new Path(relativePath);
  /sdk/assetstudio/tests/src/com/android/assetstudiolib/
GeneratorTest.java 55 String relativePath = entry.getKey();
59 + relativePath;
67 + relativePath);
78 assertImageSimilar(relativePath, goldenImage, image, 5.0f);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 86 String relativePath;
170 IPath relativePath = iProject.getLocation().makeRelativeTo(
173 addItem(relativePath.toString(), iProject, -1);
210 addItem(data.relativePath, data.project, index - 1);
230 addItem(data.relativePath, data.project, index + 1);
293 data.relativePath);
329 * @param relativePath the relative path of the library entry
333 private void addItem(String relativePath, IProject project, int index) {
335 data.relativePath = relativePath;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 913 IPath relativePath = filePath.makeRelativeTo(workspacePath);
914 xmlFile = (IFile) workspace.findMember(relativePath)
    [all...]

Completed in 393 milliseconds