Home | History | Annotate | Download | only in unicode

Lines Matching refs:search

35  * This object holds the information needed to do a Collation sensitive Boyer-Moore search. It encapulates
39 * To do a search, you fist need to get a <code>CollData</code> object by calling <code>CollData::open</code>.
41 * string and the target string. Then you call the <code>search</code> method. Here's a code sample:
54 * BoyerMooreSearch *search = new BoyerMooreSearch(collData, *patternString, target, status);
65 * while (search->search(offset, start, end)) {
77 * delete search;
114 * @param patternString - the string for which to search
115 * @param targetString - the string in which to search or <code>NULL</code> if youu will
144 * Search for the pattern string in the target string.
146 * @param offset - the offset in the target string at which to begin the search
154 UBool search(int32_t offset, int32_t &start, int32_t &end);