Lines Matching refs:PathPart

128             PathPart.EMPTY, Part.NULL, Part.NULL);
447 PathPart path = PathPart.fromDecoded(file.getAbsolutePath());
585 private PathPart path;
587 private PathPart getPathPart() {
589 ? path = PathPart.fromEncoded(parsePath())
1137 private final PathPart path;
1141 private HierarchicalUri(String scheme, Part authority, PathPart path,
1145 this.path = path == null ? PathPart.NULL : path;
1154 PathPart.readFrom(parcel),
1319 private PathPart path;
1383 Builder path(PathPart path) {
1400 return path(PathPart.fromDecoded(path));
1411 return path(PathPart.fromEncoded(path));
1418 return path(PathPart.appendDecodedSegment(path, newSegment));
1425 return path(PathPart.appendEncodedSegment(path, newSegment));
1521 PathPart path = this.path;
1522 if (path == null || path == PathPart.NULL) {
1523 path = PathPart.EMPTY;
1528 path = PathPart.makeAbsolute(path);
2095 static class PathPart extends AbstractPart {
2098 static final PathPart NULL = new PathPart(null, null);
2101 static final PathPart EMPTY = new PathPart("", "");
2103 private PathPart(String encoded, String decoded) {
2160 static PathPart appendEncodedSegment(PathPart oldPart,
2190 static PathPart appendDecodedSegment(PathPart oldPart, String decoded) {
2197 static PathPart readFrom(Parcel parcel) {
2216 static PathPart fromEncoded(String encoded) {
2225 static PathPart fromDecoded(String decoded) {
2235 static PathPart from(String encoded, String decoded) {
2244 return new PathPart(encoded, decoded);
2251 static PathPart makeAbsolute(PathPart oldPart) {
2275 return new PathPart(newEncoded, newDecoded);