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

  /external/webkit/Tools/Scripts/
ensure-valid-python 58 my ($remoteURL, $localPath) = @_;
59 print "Downloading $remoteURL to $localPath\n";
60 my $exitCode = system("curl", "-o", $localPath, $remoteURL);
102 my $localPath = File::Spec->join($downloadDirectory, $localFilename);
104 downloadFileToPath($pythonURL, $localPath) or die "Failed to download $pythonURL";
105 checkMD5($localPath, $pythonMD5) or die "MD5 check failed on $localPath";
106 return mountDMG($localPath, $mountPoint);
  /external/apache-xml/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...]
  /external/apache-xml/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 103 String localPath;
126 return localPath;
382 // A temporary local file will have been created native side and localPath set
384 File src = new File(mBaseDir, result.localPath);
410 File src = new File(mBaseDir, result.localPath);
572 cacheRet.localPath = "";
732 if (path.equals(oldResult.localPath)) {
733 path = oldResult.localPath;
735 path = oldResult.localPath;
748 cacheRet.localPath = path
    [all...]
WebViewDatabase.java 51 // 6 -> 7 Change cache localPath from int to String
742 ret.localPath = cursor.getString(0);
794 mCacheInserter.bind(mCacheFilePathColIndex, c.localPath);
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
SyncService.java 229 * @param localPath The local destination. If the entries count is > 1 or
239 public void pull(FileEntry[] entries, String localPath, ISyncProgressMonitor monitor)
243 File f = new File(localPath);
260 doPull(entries, localPath, fls, monitor);
429 * @param localPath the localpath to a directory
437 private void doPull(FileEntry[] entries, String localPath,
451 String dest = localPath + File.separator + e.getName();
464 String dest = localPath + File.separator + e.getName();
473 * @param localPath the local destinatio
    [all...]
  /external/skia/src/core/
SkScalerContext.cpp 543 SkPath localPath;
548 path.transform(inverse, &localPath);
549 // now localPath is only affected by the paint settings, and not the canvas matrix
556 if (fPathEffect->filterPath(&effectPath, localPath, &width)) {
557 localPath.swap(effectPath);
569 stroker.strokePath(localPath, &outline);
570 localPath.swap(outline);
578 localPath.transform(matrix, devPath);
581 fillPath->swap(localPath);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
ExtraPackage.java 485 File localPath = getLocalArchivePath();
486 if (localPath != null) {
487 s += String.format("\nLocation: %1$s", localPath.getAbsolutePath());
516 File localPath = ((ExtraPackage) pkg).getLocalArchivePath();
517 if (localPath != null) {
518 return localPath;
  /external/webkit/Source/WebCore/platform/win/
ClipboardWin.cpp 194 String localPath = url.path();
196 if (localPath[0] == '/')
197 localPath = localPath.substring(1);
198 LPCWSTR localPathStr = localPath.charactersWithNullTermination();
  /external/webkit/Tools/DumpRenderTree/win/
LayoutTestControllerWin.cpp 285 wstring localPath;
286 if (!resolveCygwinPath(input, localPath)) {
291 return JSStringCreateWithCharacters(localPath.c_str(), localPath.length());
    [all...]
  /frameworks/base/core/java/android/app/
DownloadManager.java     [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.mm 318 String localPath = resource->path();
319 NSURL* cocoaURL = !localPath.isEmpty() ? [NSURL fileURLWithPath:localPath isDirectory:NO] : nil;
    [all...]
  /external/webkit/Tools/DumpRenderTree/
LayoutTestController.cpp 267 JSRetainPtr<JSStringRef> localPath(Adopt, JSValueToStringCopy(context, arguments[0], exception));
270 JSRetainPtr<JSStringRef> convertedPath(Adopt, controller->pathToLocalResource(context, localPath.get()));
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 407 milliseconds