Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/net/
DURLStreamHandler.java167 int nextPos; in parseURL() local
170 nextPos = end; in parseURL()
171 ref = spec.substring(pos + 1, nextPos); in parseURL()
174 nextPos = UrlUtils.findFirstOf(spec, "#", pos, end); in parseURL()
175 query = spec.substring(pos + 1, nextPos); in parseURL()
179 nextPos = UrlUtils.findFirstOf(spec, "?#", pos, end); in parseURL()
180 path = relativePath(path, spec.substring(pos, nextPos)); in parseURL()
185 pos = nextPos; in parseURL()