Home | History | Annotate | Download | only in unicode

Lines Matching refs:CollData

24 #include "unicode/colldata.h"
40 * To do a search, you fist need to get a <code>CollData</code> object by calling <code>CollData::open</code>.
41 * Then you construct a <code>BoyerMooreSearch</code> object from the <code>CollData</code> object, the pattern
48 * CollData *collData = CollData::open(collator, status);
51 * // could not create a CollData object
55 * BoyerMooreSearch *search = new BoyerMooreSearch(collData, *patternString, target, status);
59 * CollData::close(collData);
79 * CollData::close(collData);
81 * // CollData objects are cached, so the call to
82 * // CollData::close doesn't delete the object.
84 * CollData::flushCollDataCache();
106 * @see CollData
114 * @param theData - A <code>CollData</code> object holding the Collator-sensitive data
126 BoyerMooreSearch(CollData *theData, const UnicodeString &patternString, const UnicodeString *targetString, UErrorCode &status);
169 * Return the <code>CollData</code> object used for searching
171 * @return the <code>CollData</code> object used for searching
175 CollData *getData();
216 CollData *data;