Home | History | Annotate | Download | only in i18n

Lines Matching refs:contractions

690   USet *contractions = context->conts;
701 if(contractions && rightIndex-leftIndex > 1) {
702 uset_addString(contractions, buffer+leftIndex, rightIndex-leftIndex);
723 if(contractions) {
724 uset_addString(contractions, buffer+leftIndex, rightIndex-leftIndex);
743 if(contractions) {
744 uset_addString(contractions, buffer+leftIndex, rightIndex+1-leftIndex);
768 // if there are suppressed contractions, we don't
798 * Get a set containing the contractions defined by the collator. The set includes
799 * both the UCA contractions and the contractions defined by the collator
807 USet *contractions,
810 ucol_getContractionsAndExpansions(coll, contractions, NULL, FALSE, status);
811 return uset_getItemCount(contractions);
819 * @param addPrefixes add the prefix contextual elements to contractions
826 USet *contractions,
839 if(contractions) {
840 uset_clear(contractions);
850 contContext c = { NULL, contractions, expansions, src.removeSet, addPrefixes, status };
852 // Add the UCA contractions
856 // This is collator specific. Add contractions from a collator
886 USet *contractions = uset_open(0,0);
889 int32_t contsSize = ucol_getContractions(coll, contractions, status);
895 len = uset_getItem(contractions, i, NULL, NULL, buffer, internalBufferSize, status);
907 uset_close(contractions);