Home | History | Annotate | Download | only in impl

Lines Matching refs:rpath

1413         String rpath = wholeBundle.reader.getAlias(_resource);
1417 if (aliasesVisited.get(rpath) != null) {
1421 aliasesVisited.put(rpath, "");
1422 if (rpath.indexOf(RES_PATH_SEP_CHAR) == 0) {
1423 int i = rpath.indexOf(RES_PATH_SEP_CHAR, 1);
1424 int j = rpath.indexOf(RES_PATH_SEP_CHAR, i + 1);
1425 bundleName = rpath.substring(1, i);
1427 locale = rpath.substring(i + 1);
1429 locale = rpath.substring(i + 1, j);
1430 keyPath = rpath.substring(j + 1, rpath.length());
1445 int i = rpath.indexOf(RES_PATH_SEP_CHAR);
1447 locale = rpath.substring(0, i);
1448 keyPath = rpath.substring(i + 1);
1450 locale = rpath;
1458 keyPath = rpath.substring(LOCALE.length() + 2/* prepending and appending / */, rpath.length());