Lines Matching full:code
39 * To do a search, you fist need to get a <code>CollData</code> object by calling <code>CollData::open</code>.
40 * Then you construct a <code>BoyerMooreSearch</code> object from the <code>CollData</code> object, the pattern
41 * string and the target string. Then you call the <code>search</code> method. Here's a code sample:
92 * 2) For Han and Hangul characters, this code ignores any Collation tailorings. In general,
94 * to be equal to Han characters with the same pronounciation. Because this code ignroes
111 * Construct a <code>BoyerMooreSearch</code> object.
113 * @param theData - A <code>CollData</code> object holding the Collator-sensitive data
115 * @param targetString - the string in which to search or <code>NULL</code> if youu will
116 * set it later by calling <code>setTargetString</code>.
119 * Note: if on return, status is set to an error code,
137 * @return <code>TRUE</code> if the pattern string did not generate any CEs
150 * @return <code>TRUE</code> if the match succeeds, <code>FALSE</code> otherwise.
168 * Return the <code>CollData</code> object used for searching
170 * @return the <code>CollData</code> object used for searching
179 * @return a <code>CEList</code> object holding the CEs generated by the pattern string.
186 * Return the <code>BadCharacterTable</code> object computed for the pattern string.
188 * @return the <code>BadCharacterTable</code> object.
195 * Return the <code>GoodSuffixTable</code> object computed for the pattern string.
197 * @return the <code>GoodSuffixTable</code> object computed for the pattern string.