Home | History | Annotate | Download | only in unicode

Lines Matching refs:matches

402     * Test whether a string matches a regular expression.  This convenience function
411 * @return True if the regular expression exactly matches the full input string.
415 static UBool U_EXPORT2 matches(const UnicodeString &regex,
422 * Test whether a string matches a regular expression. This convenience function
431 * @return True if the regular expression exactly matches the full input string.
435 static UBool U_EXPORT2 matches(UText *regex,
467 * Pattern matches identify delimiters that separate the input
511 * Pattern matches identify delimiters that separate the input
586 int32_t fMinMatchLen; // Minimum Match Length. All matches will have length
638 * for testing for matches, and for find and replace operations.
761 virtual UBool matches(UErrorCode &status);
774 virtual UBool matches(int64_t startIndex, UErrorCode &status);
779 * against the pattern. Like the matches() method, this function
826 * input string that matches the pattern, starting at the specified index.
1043 * Resets this matcher. The effect is to remove any memory of previous matches,
1055 * The effect is to remove any memory of previous matches,
1075 * @param input The new string on which subsequent pattern matches will operate.
1095 * @param input The new string on which subsequent pattern matches will operate.
1108 * Set the subject text string upon which the regular expression is looking for matches
1217 * conducts are limited to finding matches within regionStart (inclusive) and
1227 * conducts are limited to finding matches within regionStart (inclusive) and
1238 * this matcher conducts are limited to finding matches within regionStart
1248 * this matcher conducts are limited to finding matches within regionStart
1317 * hitEnd() is defined for both successful and unsuccessful matches.
1347 * Replaces every substring of the input that matches the pattern
1352 * looking for matches of the pattern. Input that is not part of any
1366 * Replaces every substring of the input that matches the pattern
1371 * looking for matches of the pattern. Input that is not part of any
1389 * Replaces the first substring of the input that matches
1412 * Replaces the first substring of the input that matches
1531 * The pattern matches identify delimiters that separate the input
1532 * into fields. The input data between the matches becomes the
1560 * The pattern matches identify delimiters that separate the input
1561 * into fields. The input data between the matches becomes the
1619 * The matcher is also reset, discarding any results from previous matches.