Searched refs:ind (Results 1 – 3 of 3) sorted by relevance
192 int ind = authority.indexOf('@'); in parseURL() local193 if (ind != -1) { in parseURL()194 if (ind != authority.lastIndexOf('@')) { in parseURL()199 userInfo = authority.substring(0, ind); in parseURL()200 host = authority.substring(ind+1); in parseURL()209 if ((ind = host.indexOf(']')) > 2) { in parseURL()212 host = nhost.substring(0,ind+1); in parseURL()214 isIPv6LiteralAddress(host.substring(1, ind))) { in parseURL()220 if (nhost.length() > ind+1) { in parseURL()221 if (nhost.charAt(ind+1) == ':') { in parseURL()[all …]
1433 int ind = authority.indexOf('@'); in setDeserializedFields() local1434 if (ind != -1) in setDeserializedFields()1435 userInfo = authority.substring(0, ind); in setDeserializedFields()1519 int ind = file.indexOf('#'); in Parts() local1520 ref = ind < 0 ? null: file.substring(ind + 1); in Parts()1521 file = ind < 0 ? file: file.substring(0, ind); in Parts()
113 int ind = 0; // index into the data array (to check the got data) in testRead2() local116 for (int j = 0; j < got - ind; j++) { in testRead2()117 if (result[j] != data[ind + j]) { in testRead2()127 ind = got; in testRead2()152 int ind = skip; // index into the data array (to check the got data) in testRead3() local157 for (int j = 0; j < got - ind; j++) { in testRead3()159 + "returned incorrect data.", result[j], data[ind + j]); in testRead3()168 ind = got; in testRead3()189 int ind = skipped; in testSkip() local192 for (int j = 0; j < got - ind; j++) { in testSkip()[all …]