HomeSort by relevance Sort by last modified time
    Searched refs:relativePath (Results 1 - 25 of 41) 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...]
CrunchCache.h 84 bool needsUpdating(String8 relativePath) const;
  /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 58 public TextResult(String relativePath) {
59 mRelativePath = relativePath;
77 mRelativePath = bundle.getString("relativePath");
146 public void setExpectedImageResultPath(String relativePath) {
157 public void setExpectedTextResultPath(String relativePath) {
158 mExpectedResultPath = relativePath;
246 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/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);
  /external/webkit/Tools/BuildSlaveSupport/
test-result-archive 112 relativePath = os.path.join(dirPath, fileName)
113 print "Adding", relativePath
114 zipper.write(relativePath)
  /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...]
  /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]));
  /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);
  /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();
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
json_layout_results_generator.py 100 relativePath = test
102 relativePath = test[index + 1:]
105 return relativePath.replace('\\', '/')

Completed in 392 milliseconds

1 2