Home | History | Annotate | Download | only in utils

Lines Matching defs:localPath

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