Home | History | Annotate | Download | only in net

Lines Matching defs:oldPath

2171             String oldPath = oldPart.getEncoded();
2173 if (oldPath == null) {
2174 oldPath = "";
2177 int oldPathLength = oldPath.length();
2182 } else if (oldPath.charAt(oldPathLength - 1) == '/') {
2183 newPath = oldPath + newSegment;
2185 newPath = oldPath + "/" + newSegment;
2258 String oldPath = encodedCached ? oldPart.encoded : oldPart.decoded;
2260 if (oldPath == null || oldPath.length() == 0
2261 || oldPath.startsWith("/")) {