Searched defs:regionMatches (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/test/java/lang/String/
H A DExceptions.java432 private static void regionMatches() { method in class:Exceptions
433 System.out.println("regionMatches(int toffset, String other,"
437 "foo".regionMatches(1, null, 1, 1);
440 System.out.println("regionMatches(boolean ignore, int toffset,"
445 "foo".regionMatches(true, 1, null, 1, 1);
646 regionMatches(); // regionMatches(int, String, int, int)
647 // regionMatches(boolean, int, String, int, int)
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java1093 && regionMatches(true, 0, anotherString, 0, value.length);
1254 public boolean regionMatches(int toffset, String other, int ooffset, method in class:String
1324 public boolean regionMatches(boolean ignoreCase, int toffset, method in class:String
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRegularExpression.java1153 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); method in class:RegularExpression.ExpressionTarget
1754 abstract boolean regionMatches(boolean ignoreCase, int offset, int limit, int offset2, int partlen); method in class:RegularExpression.ExpressionTarget
1773 final boolean regionMatches(boolean ignoreCase, int offset, int limit, method in class:RegularExpression.StringTarget
1778 return (ignoreCase) ? target.regionMatches(true, offset, part, 0, partlen) : target.regionMatches(offset, part, 0, partlen);
1781 final boolean regionMatches(boolea method in class:RegularExpression.StringTarget
1807 final boolean regionMatches(boolean ignoreCase, int offset, int limit, method in class:RegularExpression.CharArrayTarget
1816 private final boolean regionMatches(int offset, int limit, String part, int partlen) { method in class:RegularExpression.CharArrayTarget
1846 final boolean regionMatches(boolean ignoreCase, int offset, int limit, int offset2, int partlen) { method in class:RegularExpression.CharArrayTarget
1854 private final boolean regionMatches(int offset, int limit, int offset2, int partlen) { method in class:RegularExpression.CharArrayTarget
1899 final boolean regionMatches(boolean ignoreCase, int offset, int limit, method in class:RegularExpression.CharacterIteratorTarget
1908 private final boolean regionMatches(int offset, int limit, String part, int partlen) { method in class:RegularExpression.CharacterIteratorTarget
1938 final boolean regionMatches(boolean ignoreCase, int offset, int limit, int offset2, int partlen) { method in class:RegularExpression.CharacterIteratorTarget
1946 private final boolean regionMatches(int offset, int limit, int offset2, int partlen) { method in class:RegularExpression.CharacterIteratorTarget
[all...]

Completed in 44 milliseconds