Home
last modified time | relevance | path

Searched refs:localPath (Results 1 – 8 of 8) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DSystemIDResolver.java62 public static String getAbsoluteURIFromRelative(String localPath) in getAbsoluteURIFromRelative() argument
64 if (localPath == null || localPath.length() == 0) in getAbsoluteURIFromRelative()
69 String absolutePath = localPath; in getAbsoluteURIFromRelative()
70 if (!isAbsolutePath(localPath)) in getAbsoluteURIFromRelative()
74 absolutePath = getAbsolutePathFromRelativePath(localPath); in getAbsoluteURIFromRelative()
79 return "file:" + localPath; in getAbsoluteURIFromRelative()
92 urlString = "file:" + localPath; in getAbsoluteURIFromRelative()
244 String localPath = systemId.substring(secondColonIndex-1); in getAbsoluteURI() local
246 if (!isAbsolutePath(localPath)) in getAbsoluteURI()
248 getAbsolutePathFromRelativePath(localPath); in getAbsoluteURI()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DSystemIDResolver.java55 public static String getAbsoluteURIFromRelative(String localPath) in getAbsoluteURIFromRelative() argument
57 if (localPath == null || localPath.length() == 0) in getAbsoluteURIFromRelative()
62 String absolutePath = localPath; in getAbsoluteURIFromRelative()
63 if (!isAbsolutePath(localPath)) in getAbsoluteURIFromRelative()
67 absolutePath = getAbsolutePathFromRelativePath(localPath); in getAbsoluteURIFromRelative()
72 return "file:" + localPath; in getAbsoluteURIFromRelative()
85 urlString = "file:" + localPath; in getAbsoluteURIFromRelative()
237 String localPath = systemId.substring(secondColonIndex-1); in getAbsoluteURI() local
239 if (!isAbsolutePath(localPath)) in getAbsoluteURI()
241 getAbsolutePathFromRelativePath(localPath); in getAbsoluteURI()
/external/webkit/Tools/Scripts/
Densure-valid-python58 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/skia/src/core/
DSkScalerContext.cpp616 SkPath localPath; in internalGetPath() local
621 path.transform(inverse, &localPath); in internalGetPath()
629 if (fPathEffect->filterPath(&effectPath, localPath, &width)) { in internalGetPath()
630 localPath.swap(effectPath); in internalGetPath()
642 stroker.strokePath(localPath, &outline); in internalGetPath()
643 localPath.swap(outline); in internalGetPath()
651 localPath.transform(matrix, devPath); in internalGetPath()
654 fillPath->swap(localPath); in internalGetPath()
/external/webkit/Source/WebCore/platform/win/
DClipboardWin.cpp194 String localPath = decodeURLEscapeSequences(url.path()); in createGlobalHDropContent() local
196 if (localPath[0] == '/') in createGlobalHDropContent()
197 localPath = localPath.substring(1); in createGlobalHDropContent()
198 LPCWSTR localPathStr = localPath.charactersWithNullTermination(); in createGlobalHDropContent()
/external/webkit/Tools/DumpRenderTree/win/
DLayoutTestControllerWin.cpp285 wstring localPath; in pathToLocalResource() local
286 if (!resolveCygwinPath(input, localPath)) { in pathToLocalResource()
291 return JSStringCreateWithCharacters(localPath.c_str(), localPath.length()); in pathToLocalResource()
/external/webkit/Source/WebCore/platform/graphics/mac/
DMediaPlayerPrivateQTKit.mm318 String localPath = resource->path();
319 NSURL* cocoaURL = !localPath.isEmpty() ? [NSURL fileURLWithPath:localPath isDirectory:NO] : nil;
/external/webkit/Tools/DumpRenderTree/
DLayoutTestController.cpp267 … JSRetainPtr<JSStringRef> localPath(Adopt, JSValueToStringCopy(context, arguments[0], exception)); in pathToLocalResourceCallback() local
270 …inPtr<JSStringRef> convertedPath(Adopt, controller->pathToLocalResource(context, localPath.get())); in pathToLocalResourceCallback()