Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/net/
DURLStreamHandler.java192 int ind = authority.indexOf('@'); in parseURL() local
193 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 …]
DURL.java1433 int ind = authority.indexOf('@'); in setDeserializedFields() local
1434 if (ind != -1) in setDeserializedFields()
1435 userInfo = authority.substring(0, ind); in setDeserializedFields()
1519 int ind = file.indexOf('#'); in Parts() local
1520 ref = ind < 0 ? null: file.substring(ind + 1); in Parts()
1521 file = ind < 0 ? file: file.substring(0, ind); in Parts()
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
DCipherInputStream1Test.java113 int ind = 0; // index into the data array (to check the got data) in testRead2() local
116 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() local
157 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() local
192 for (int j = 0; j < got - ind; j++) { in testSkip()
[all …]