Home | History | Annotate | Download | only in common

Lines Matching refs:decomposition

201     getDecomposition(UChar32 c, UnicodeString &decomposition) const {
209 decomposition.setTo(buffer, length); // copy the string (Jamos from Hangul syllable c)
211 decomposition.setTo(FALSE, d, length); // read-only alias
216 getRawDecomposition(UChar32 c, UnicodeString &decomposition) const {
224 decomposition.setTo(buffer, length); // copy the string (algorithmic decomposition)
226 decomposition.setTo(FALSE, d, length); // read-only alias
854 UChar32 c, UChar *decomposition, int32_t capacity,
859 if(decomposition==NULL ? capacity!=0 : capacity<0) {
863 UnicodeString destString(decomposition, 0, capacity);
865 return destString.extract(decomposition, capacity, *pErrorCode);
873 UChar32 c, UChar *decomposition, int32_t capacity,
878 if(decomposition==NULL ? capacity!=0 : capacity<0) {
882 UnicodeString destString(decomposition, 0, capacity);
884 return destString.extract(decomposition, capacity, *pErrorCode);