Home
last modified time | relevance | path

Searched refs:oldPart (Results 1 – 1 of 1) sorted by relevance

/aosp12/frameworks/base/core/java/android/net/
H A DUri.java2224 static PathPart appendEncodedSegment(PathPart oldPart, in appendEncodedSegment() argument
2229 if (oldPart == null) { in appendEncodedSegment()
2234 String oldPath = oldPart.getEncoded(); in appendEncodedSegment()
2254 static PathPart appendDecodedSegment(PathPart oldPart, String decoded) { in appendDecodedSegment() argument
2258 return appendEncodedSegment(oldPart, encoded); in appendDecodedSegment()
2313 static PathPart makeAbsolute(PathPart oldPart) { in makeAbsolute() argument
2315 boolean encodedCached = oldPart.encoded != NotCachedHolder.NOT_CACHED; in makeAbsolute()
2319 String oldPath = encodedCached ? oldPart.encoded : oldPart.decoded; in makeAbsolute()
2323 return oldPart; in makeAbsolute()
2328 ? "/" + oldPart.encoded : NotCachedHolder.NOT_CACHED; in makeAbsolute()
[all …]