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

1 2

  /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]));
  /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/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 389 IPath relativePath = path.makeRelativeTo(workspacePath);
390 IResource member = workspace.findMember(relativePath);
417 IPath relativePath = path.makeRelativeTo(workspacePath);
418 return 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/lint/libs/lint_api/src/com/android/tools/lint/client/api/
DefaultConfiguration.java 153 String relativePath = context.getProject().getRelativePath(file);
155 if (suppressedPath.equals(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...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureHelper.java 444 String relativePath = name.substring(2);
449 assetNames.add(blenderAssetFolder+'/'+relativePath);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help_3.5.0.v20100524.jar 
org.eclipse.equinox.preferences_3.3.0.v20100503.jar 
org.eclipse.help.base_3.5.2.v201011171123.jar 
org.eclipse.update.configurator_3.3.100.v20100512.jar 
org.eclipse.ui.views_3.5.0.I20100527-0800.jar 
org.eclipse.equinox.common_3.6.0.v20100503.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-commons-net.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.equinox.common_3.6.0.v20100503.jar 

Completed in 1160 milliseconds

1 2