Searched refs:thisStart (Results 1 - 1 of 1) sorted by last modified time

/libcore/luni/src/main/java/java/lang/
H A DString.java1210 * @param thisStart
1223 public boolean regionMatches(int thisStart, String string, int start, int length) { argument
1230 if (thisStart < 0 || count - thisStart < length) {
1236 int o1 = offset + thisStart, o2 = string.offset + start;
1254 * @param thisStart
1267 public boolean regionMatches(boolean ignoreCase, int thisStart, String string, int start, int length) { argument
1269 return regionMatches(thisStart, string, start, length);
1274 if (thisStart < 0 || length > count - thisStart) {
[all...]

Completed in 33 milliseconds