Lines Matching defs:region

55  * <i>region</i>. By default, the region contains all of the matcher's input.
56 * The region can be modified via the{@link #region region} method and queried
58 * methods. The way that the region boundaries interact with some pattern
119 * will match at these "hard" boundaries. Changing the region
198 * matcher's region are transparent to lookahead, lookbehind,
205 * matcher's region match anchors such as ^ and $.
292 * and sets its append position to zero. The matcher's region is set to the
293 * default region, which is its entire character sequence. The anchoring
294 * and transparency of this matcher's region boundaries are unaffected.
316 * and sets its append position to zero. The matcher's region is set to
317 * the default region, which is its entire character sequence. The
318 * anchoring and transparency of this matcher's region boundaries are
550 * Attempts to match the entire region against the pattern.
555 * @return <tt>true</tt> if, and only if, the entire region sequence
566 * <p> This method starts at the beginning of this matcher's region, or, if
582 // If next search starts before region, start it at region
586 // If next search starts beyond region then it fails
623 * region, against the pattern.
626 * at the beginning of the region; unlike that method, it does not
627 * require that the entire region be matched.
961 * Sets the limits of this matcher's region. The region is the part of the
963 * method resets the matcher, and then sets the region to start at the
971 * region.
985 public Matcher region(int start, int end) {
999 * Reports the start index of this matcher's region. The
1004 * @return The starting point of this matcher's region
1012 * Reports the end index (exclusive) of this matcher's region.
1017 * @return the ending point of this matcher's region
1025 * Queries the transparency of region bounds for this matcher.
1034 * <p> By default, a matcher uses opaque region boundaries.
1046 * Sets the transparency of region bounds for this matcher.
1053 * matcher's region are transparent to lookahead, lookbehind,
1055 * boundaries of the region to see if a match is appropriate.
1058 * region are opaque to lookahead, lookbehind, and boundary matching
1061 * of the region.
1077 * Queries the anchoring of region bounds for this matcher.
1085 * <p> By default, a matcher uses anchoring region boundaries.
1097 * Sets the anchoring of region bounds for this matcher.
1105 * matcher's region match anchors such as ^ and $.
1108 * matcher's region will not match anchors such as ^ and $.
1110 * <p> By default, a matcher uses anchoring region boundaries.
1134 sb.append(" region=");