Home | History | Annotate | Download | only in impl

Lines Matching refs:rpath

1409         String rpath = wholeBundle.reader.getAlias(_resource);
1413 if (aliasesVisited.get(rpath) != null) {
1417 aliasesVisited.put(rpath, "");
1418 if (rpath.indexOf(RES_PATH_SEP_CHAR) == 0) {
1419 int i = rpath.indexOf(RES_PATH_SEP_CHAR, 1);
1420 int j = rpath.indexOf(RES_PATH_SEP_CHAR, i + 1);
1421 bundleName = rpath.substring(1, i);
1423 locale = rpath.substring(i + 1);
1425 locale = rpath.substring(i + 1, j);
1426 keyPath = rpath.substring(j + 1, rpath.length());
1441 int i = rpath.indexOf(RES_PATH_SEP_CHAR);
1443 locale = rpath.substring(0, i);
1444 keyPath = rpath.substring(i + 1);
1446 locale = rpath;
1454 keyPath = rpath.substring(LOCALE.length() + 2/* prepending and appending / */, rpath.length());