Searched refs:oldPart (Results 1 – 1 of 1) sorted by relevance
2224 static PathPart appendEncodedSegment(PathPart oldPart, in appendEncodedSegment() argument2229 if (oldPart == null) { in appendEncodedSegment()2234 String oldPath = oldPart.getEncoded(); in appendEncodedSegment()2254 static PathPart appendDecodedSegment(PathPart oldPart, String decoded) { in appendDecodedSegment() argument2258 return appendEncodedSegment(oldPart, encoded); in appendDecodedSegment()2318 static PathPart makeAbsolute(PathPart oldPart) { in makeAbsolute() argument2320 boolean encodedCached = oldPart.encoded != NotCachedHolder.NOT_CACHED; in makeAbsolute()2324 String oldPath = encodedCached ? oldPart.encoded : oldPart.decoded; in makeAbsolute()2328 return oldPart; in makeAbsolute()2333 ? "/" + oldPart.encoded : NotCachedHolder.NOT_CACHED; in makeAbsolute()[all …]