Lines Matching defs:regionMatches

1153                             if (!target.regionMatches(isSetIgnoreCase, offset, con.limit, o2, literallen)) {
1160 if (!target.regionMatches(isSetIgnoreCase, offset-literallen, con.limit, o2, literallen)) {
1175 if (!target.regionMatches(isSetIgnoreCase, offset, con.limit, literal, literallen)) {
1182 if (!target.regionMatches(isSetIgnoreCase, offset-literallen, con.limit, literal, literallen)) {
1753 abstract boolean regionMatches(boolean ignoreCase, int offset, int limit, String part, int partlen);
1754 abstract boolean regionMatches(boolean ignoreCase, int offset, int limit, int offset2, int partlen);
1773 final boolean regionMatches(boolean ignoreCase, int offset, int limit,
1778 return (ignoreCase) ? target.regionMatches(true, offset, part, 0, partlen) : target.regionMatches(offset, part, 0, partlen);
1781 final boolean regionMatches(boolean ignoreCase, int offset, int limit,
1786 return (ignoreCase) ? target.regionMatches(true, offset, target, offset2, partlen)
1787 : target.regionMatches(offset, target, offset2, partlen);
1807 final boolean regionMatches(boolean ignoreCase, int offset, int limit,
1813 : regionMatches(offset, limit, part, partlen);
1816 private final boolean regionMatches(int offset, int limit, String part, int partlen) {
1846 final boolean regionMatches(boolean ignoreCase, int offset, int limit, int offset2, int partlen) {
1851 : regionMatches(offset, limit, offset2, partlen);
1854 private final boolean regionMatches(int offset, int limit, int offset2, int partlen) {
1899 final boolean regionMatches(boolean ignoreCase, int offset, int limit,
1905 : regionMatches(offset, limit, part, partlen);
1908 private final boolean regionMatches(int offset, int limit, String part, int partlen) {
1938 final boolean regionMatches(boolean ignoreCase, int offset, int limit, int offset2, int partlen) {
1943 : regionMatches(offset, limit, offset2, partlen);
1946 private final boolean regionMatches(int offset, int limit, int offset2, int partlen) {