Searched defs:opath (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DBasicAuthentication.java182 static String getRootPath(String npath, String opath) { argument
189 opath = new URI (opath).normalize().getPath();
194 while (index < opath.length()) {
195 toindex = opath.indexOf('/', index+1);
196 if (toindex != -1 && opath.regionMatches(0, npath, 0, toindex+1))
199 return opath.substring(0, index+1);

Completed in 37 milliseconds