Home | History | Annotate | Download | only in unicode

Lines Matching defs:Normalizer2

8 *   file name:  normalizer2.h
40 * The Normalizer2 class is not intended for public subclassing.
78 class U_COMMON_API Normalizer2 : public UObject {
84 ~Normalizer2();
87 * Returns a Normalizer2 instance for Unicode NFC normalization.
94 * @return the requested Normalizer2, if successful
97 static const Normalizer2 *
101 * Returns a Normalizer2 instance for Unicode NFD normalization.
108 * @return the requested Normalizer2, if successful
111 static const Normalizer2 *
115 * Returns a Normalizer2 instance for Unicode NFKC normalization.
122 * @return the requested Normalizer2, if successful
125 static const Normalizer2 *
129 * Returns a Normalizer2 instance for Unicode NFKD normalization.
136 * @return the requested Normalizer2, if successful
139 static const Normalizer2 *
143 * Returns a Normalizer2 instance for Unicode NFKC_Casefold normalization.
150 * @return the requested Normalizer2, if successful
153 static const Normalizer2 *
157 * Returns a Normalizer2 instance which uses the specified data file
174 * @return the requested Normalizer2, if successful
177 static const Normalizer2 *
256 * on a UNORM2_DECOMPOSE Normalizer2 instance, but much faster, and except that this function
259 * This function is independent of the mode of the Normalizer2.
278 * When used on a standard NFKC Normalizer2 instance,
281 * When used on a standard NFC Normalizer2 instance,
285 * This function is independent of the mode of the Normalizer2.
304 * This function is independent of the mode of the Normalizer2.
438 * This class implements all of (and only) the Normalizer2 API.
443 class U_COMMON_API FilteredNormalizer2 : public Normalizer2 {
446 * Constructs a filtered normalizer wrapping any Normalizer2 instance
451 * @param n2 wrapped Normalizer2 instance
455 FilteredNormalizer2(const Normalizer2 &n2, const UnicodeSet &filterSet) :
522 * This function is independent of the mode of the Normalizer2.
536 * This function is independent of the mode of the Normalizer2.
550 * This function is independent of the mode of the Normalizer2.
572 * For details see the Normalizer2 base class documentation.
585 * For details see the Normalizer2 base class documentation.
598 * For details see the Normalizer2 base class documentation.
613 * For details see the Normalizer2 base class documentation.
623 * For details see the Normalizer2 base class documentation.
632 * For details see the Normalizer2 base class documentation.
651 const Normalizer2 &norm2;