Lines Matching refs:text

42 package java.text;
69 * iterator uses a longest-possible-match algorithm when matching text to regular
109 * before the *?.  For example, if you have "xxyxyyyxyxyxxyxyxyy" in the text,
121 * <td width="94%">Specifies where the break position should go if text matches this
126 * break position at the end of the matching text.</td>
153 * the corresponding character(s) in the text exactly.</td>
212 private android.icu.text.BreakIterator wrapped;
218 IcuIteratorWrapper(android.icu.text.BreakIterator iterator) {
230 result.wrapped = (android.icu.text.BreakIterator) wrapped.clone();
236 * rules, and iterate over the same text.
250 * Returns text
266 * Sets the current iteration position to the beginning of the text.
269 * @return The offset of the beginning of the text.
276 * Sets the current iteration position to the end of the text.
279 * @return The text's past-the-end offset.
320 protected static final void checkOffset(int offset, CharacterIterator text) {
321 if (offset < text.getBeginIndex() || offset > text.getEndIndex()) {
334 CharacterIterator text = getText();
335 checkOffset(offset, text);
350 CharacterIterator text = getText();
351 checkOffset(offset, text);
364 CharacterIterator text = getText();
365 checkOffset(offset, text);
379 * Return a CharacterIterator over the text being analyzed. This version
384 * @return An iterator over the text being analyzed.
395 * Set the iterator to analyze a new piece of text. This function resets
396 * the current iteration position to the beginning of the text.
398 * @param newText An iterator over the text to analyze.