• Home
  • Raw
  • Download

Lines Matching refs:coll

554 ucol_getShortDefinitionString(const UCollator *coll,  in ucol_getShortDefinitionString()  argument
573 locale = ucol_getLocaleByType(coll, ULOC_VALID_LOCALE, status); in ucol_getShortDefinitionString()
595 attribute = ucol_getAttributeOrDefault(coll, (UColAttribute)options[i].attr, status); in ucol_getShortDefinitionString()
603 if(coll->variableTopValueisDefault == FALSE) { in ucol_getShortDefinitionString()
605 elementSize = T_CString_integerToString(tempbuff, coll->variableTopValue, 16); in ucol_getShortDefinitionString()
642 ucol_getAttributeOrDefault(const UCollator *coll, UColAttribute attr, UErrorCode *status) in ucol_getAttributeOrDefault() argument
644 if(U_FAILURE(*status) || coll == NULL) { in ucol_getAttributeOrDefault()
649 return coll->numericCollationisDefault?UCOL_DEFAULT:coll->numericCollation; in ucol_getAttributeOrDefault()
651 return coll->hiraganaQisDefault?UCOL_DEFAULT:coll->hiraganaQ; in ucol_getAttributeOrDefault()
653 return coll->frenchCollationisDefault?UCOL_DEFAULT:coll->frenchCollation; in ucol_getAttributeOrDefault()
655 return coll->alternateHandlingisDefault?UCOL_DEFAULT:coll->alternateHandling; in ucol_getAttributeOrDefault()
657 return coll->caseFirstisDefault?UCOL_DEFAULT:coll->caseFirst; in ucol_getAttributeOrDefault()
659 return coll->caseLevelisDefault?UCOL_DEFAULT:coll->caseLevel; in ucol_getAttributeOrDefault()
661 return coll->normalizationModeisDefault?UCOL_DEFAULT:coll->normalizationMode; in ucol_getAttributeOrDefault()
663 return coll->strengthisDefault?UCOL_DEFAULT:coll->strength; in ucol_getAttributeOrDefault()
674 const UCollator *coll; member
688 const UCollator *coll = context->coll; in addSpecial() local
693 const UChar *UCharOffset = (UChar *)coll->image+getContractOffset(CE); in addSpecial()
694 uint32_t newCE = *(coll->contractionCEs + (UCharOffset - coll->contractionIndex)); in addSpecial()
717 newCE = *(coll->contractionCEs + (UCharOffset - coll->contractionIndex)); in addSpecial()
737 newCE = *(coll->contractionCEs + (UCharOffset - coll->contractionIndex)); in addSpecial()
805 ucol_getContractions( const UCollator *coll, in ucol_getContractions() argument
809 ucol_getContractionsAndExpansions(coll, contractions, NULL, FALSE, status); in ucol_getContractions()
824 ucol_getContractionsAndExpansions( const UCollator *coll, in ucol_getContractionsAndExpansions() argument
833 if(coll == NULL) { in ucol_getContractionsAndExpansions()
845 const UChar* rules = ucol_getRules(coll, &rulesLen); in ucol_getContractionsAndExpansions()
847 ucol_tok_initTokenList(&src, rules, rulesLen, coll->UCA, in ucol_getContractionsAndExpansions()
853 c.coll = coll->UCA; in ucol_getContractionsAndExpansions()
854 utrie_enum(&coll->UCA->mapping, NULL, _processSpecials, &c); in ucol_getContractionsAndExpansions()
857 c.coll = coll; in ucol_getContractionsAndExpansions()
859 utrie_enum(&coll->mapping, NULL, _processSpecials, &c); in ucol_getContractionsAndExpansions()
864 ucol_getUnsafeSet( const UCollator *coll, in ucol_getUnsafeSet() argument
889 int32_t contsSize = ucol_getContractions(coll, contractions, status); in ucol_getUnsafeSet()