Home | History | Annotate | Download | only in unicode

Lines Matching refs:UText

50 #include "unicode/utext.h"
153 * Get a UText for the text being analyzed.
154 * The returned UText is a shallow clone of the UText used internally
159 * @param fillIn A UText to be filled in. If NULL, a new UText will be
162 * @return The current UText for this break iterator. If an input
163 * UText was provided, it will always be returned.
166 virtual UText *getUText(UText *fillIn, UErrorCode &status) const = 0;
178 * the UText. The iterator position is reset to the start.
180 * This function makes a shallow clone of the supplied UText. This means
182 * Utext that was passed as a parameter, but that the underlying text itself
185 * @param text The UText used to change the text.
189 virtual void setText(UText *text, UErrorCode &status) = 0;
194 * Note that setText(UText *) provides similar functionality to this function,