Home | History | Annotate | Download | only in utils

Lines Matching defs:localPath

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);
239 if (!isAbsolutePath(localPath))
241 getAbsolutePathFromRelativePath(localPath);