Searched refs:thisStart (Results 1 - 2 of 2) sorted by relevance

/libcore/libart/src/main/java/java/lang/
H A DString.java1182 * @param thisStart
1195 public boolean regionMatches(int thisStart, String string, int start, int length) { argument
1202 if (thisStart < 0 || count - thisStart < length) {
1208 int o1 = offset + thisStart, o2 = string.offset + start;
1226 * @param thisStart
1239 public boolean regionMatches(boolean ignoreCase, int thisStart, String string, int start, int length) { argument
1241 return regionMatches(thisStart, string, start, length);
1246 if (thisStart < 0 || length > count - thisStart) {
[all...]
/libcore/libdvm/src/main/java/java/lang/
H A DString.java1217 * @param thisStart
1230 public boolean regionMatches(int thisStart, String string, int start, int length) { argument
1237 if (thisStart < 0 || count - thisStart < length) {
1243 int o1 = offset + thisStart, o2 = string.offset + start;
1261 * @param thisStart
1274 public boolean regionMatches(boolean ignoreCase, int thisStart, String string, int start, int length) { argument
1276 return regionMatches(thisStart, string, start, length);
1281 if (thisStart < 0 || length > count - thisStart) {
[all...]

Completed in 30 milliseconds