Searched refs:composePair (Results 1 - 6 of 6) sorted by relevance

/external/icu4c/common/unicode/
H A Dnormalizer2.h314 composePair(UChar32 a, UChar32 b) const;
563 composePair(UChar32 a, UChar32 b) const;
/external/icu4c/common/
H A Dfilterednormalizer2.cpp164 FilteredNormalizer2::composePair(UChar32 a, UChar32 b) const { function in class:FilteredNormalizer2
165 return (set.contains(a) && set.contains(b)) ? norm2.composePair(a, b) : U_SENTINEL;
H A Dnormalizer2.cpp44 Normalizer2::composePair(UChar32, UChar32) const { function in class:Normalizer2
232 composePair(UChar32 a, UChar32 b) const { function in class:Normalizer2WithImpl
233 return impl.composePair(a, b);
900 return reinterpret_cast<const Normalizer2 *>(norm2)->composePair(a, b);
H A Dnormalizer2impl.h356 UChar32 composePair(UChar32 a, UChar32 b) const;
772 * It is needed for the new (in ICU 49) composePair(), not for other normalization.
H A Dnormalizer2impl.cpp974 Normalizer2Impl::composePair(UChar32 a, UChar32 b) const { function in class:Normalizer2Impl
/external/icu4c/test/intltest/
H A Dtstnorm.cpp1178 // test composePair() for some pairs of characters that do not compose
1179 if( nfcNorm2->composePair(0x20, 0x301)>=0 ||
1180 nfcNorm2->composePair(0x61, 0x305)>=0 ||
1181 nfcNorm2->composePair(0x1100, 0x1160)>=0 ||
1182 nfcNorm2->composePair(0xac00, 0x11a7)>=0
1184 errln("NFC.composePair() incorrectly composes some pairs of characters");
1203 // test FilteredNormalizer2::composePair()
1204 if( 0x100!=fn2.composePair(0x41, 0x304) ||
1205 fn2.composePair(0xc7, 0x301)>=0 // unfiltered result: U+1E08
1207 errln("FilteredNormalizer2(NFC, ^A0-FF).composePair() faile
[all...]

Completed in 94 milliseconds