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

  /libcore/luni/src/main/java/org/apache/xml/serializer/utils/
SystemIDResolver.java 58 * @param localPath The relative URI to resolve
62 public static String getAbsoluteURIFromRelative(String localPath)
64 if (localPath == null || localPath.length() == 0)
69 String absolutePath = localPath;
70 if (!isAbsolutePath(localPath))
74 absolutePath = getAbsolutePathFromRelativePath(localPath);
79 return "file:" + localPath;
92 urlString = "file:" + localPath;
244 String localPath = systemId.substring(secondColonIndex-1)
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
SystemIDResolver.java 51 * @param localPath The relative URI to resolve
55 public static String getAbsoluteURIFromRelative(String localPath)
57 if (localPath == null || localPath.length() == 0)
62 String absolutePath = localPath;
63 if (!isAbsolutePath(localPath))
67 absolutePath = getAbsolutePathFromRelativePath(localPath);
72 return "file:" + localPath;
85 urlString = "file:" + localPath;
237 String localPath = systemId.substring(secondColonIndex-1)
    [all...]
  /frameworks/base/core/java/android/webkit/
CacheManager.java 95 String localPath;
118 return localPath;
214 * get the base directory of the cache. With localPath of the CacheResult,
334 File src = new File(mBaseDir, result.localPath);
473 cacheRet.localPath = "";
626 if (path.equals(oldResult.localPath)) {
627 path = oldResult.localPath;
629 path = oldResult.localPath;
642 cacheRet.localPath = path;
661 cacheRet.localPath = result.toString()
    [all...]
WebViewDatabase.java 50 // 6 -> 7 Change cache localPath from int to String
635 ret.localPath = cursor.getString(0);
683 mCacheInserter.bind(mCacheFilePathColIndex, c.localPath);
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
SyncService.java 335 * @param localPath The local destination. If the entries count is > 1 or
343 public SyncResult pull(FileEntry[] entries, String localPath, ISyncProgressMonitor monitor) {
346 File f = new File(localPath);
363 SyncResult result = doPull(entries, localPath, fls, monitor);
520 * @param localPath the localpath to a directory
525 private SyncResult doPull(FileEntry[] entries, String localPath,
539 String dest = localPath + File.separator + e.getName();
555 String dest = localPath + File.separator + e.getName();
569 * @param localPath the local destinatio
    [all...]
  /external/skia/src/core/
SkScalerContext.cpp 544 SkPath localPath;
549 path.transform(inverse, &localPath);
550 // now localPath is only affected by the paint settings, and not the canvas matrix
558 if (fPathEffect->filterPath(&effectPath, localPath, &width))
559 localPath.swap(effectPath);
571 stroker.strokePath(localPath, &outline);
572 localPath.swap(outline);
580 localPath.transform(matrix, devPath);
583 fillPath->swap(localPath);
  /external/webkit/WebCore/platform/win/
ClipboardWin.cpp 225 String localPath = url.path();
227 if (localPath[0] == '/')
228 localPath = localPath.substring(1);
229 LPCTSTR localPathStr = localPath.charactersWithNullTermination();
  /external/webkit/WebCore/platform/graphics/skia/
PlatformContextSkia.cpp 531 SkPath localPath = m_path;
536 localPath.transform(inverseMatrix);
537 return localPath;
  /frameworks/base/core/java/android/app/
DownloadManager.java     [all...]
  /external/webkit/WebKitTools/DumpRenderTree/win/
LayoutTestControllerWin.cpp 210 wstring localPath;
211 if (!resolveCygwinPath(input, localPath)) {
216 return JSStringCreateWithCharacters(localPath.c_str(), localPath.length());
    [all...]
  /cts/tools/host/src/com/android/cts/
TestDevice.java 968 * @param localPath The local path.
971 public void pushFile(String localPath, String remotePath) {
973 mSyncService.pushFile(localPath, remotePath, new PushMonitor());
    [all...]
  /prebuilt/common/ddmlib/
ddmlib-prebuilt.jar 
  /external/webkit/WebKitTools/DumpRenderTree/
LayoutTestController.cpp 202 JSRetainPtr<JSStringRef> localPath(Adopt, JSValueToStringCopy(context, arguments[0], exception));
205 JSRetainPtr<JSStringRef> convertedPath(Adopt, controller->pathToLocalResource(context, localPath.get()));
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 604 milliseconds