Home | History | Annotate | Download | only in i18n

Lines Matching full:basece

1454 and negative), a reset token, a baseCE, nextCE, and previousCE. The lists and
1550 uint32_t baseCE = UCOL_NOT_FOUND, baseContCE = UCOL_NOT_FOUND;
1562 baseCE = ucol_getNextCE(src->UCA, &s, status) & 0xFFFFFF3F;
1574 if((baseCE & 0xFF000000) >= (consts->UCA_PRIMARY_IMPLICIT_MIN<<24) && (baseCE & 0xFF000000) <= (consts->UCA_PRIMARY_IMPLICIT_MAX<<24) ) { /* implicits - */
1575 uint32_t primary = (baseCE & UCOL_PRIMARYMASK) | ((baseContCE & UCOL_PRIMARYMASK) >> 16);
1594 src->lh[src->resultLen].baseCE = CE & 0xFFFFFF3F;
1611 /* invPos = */ ucol_inv_getPrevCE(src, baseCE, baseContCE, &CE, &SecondCE, strength);
1617 if(ucol_getCEStrengthDifference(baseCE, baseContCE, CE, SecondCE) < strength) {
1619 // now we are in the situation where our baseCE should actually be modified in
1622 CE = baseCE - 0x0200;
1624 CE = baseCE - 0x02;
1677 // is bigger then I wanted. So, if CE < baseCE and I wanted &[before 2], then i'll
1693 src->lh[src->resultLen].baseCE = CE & 0xFFFFFF3F;
2012 /* we need to do slightly more work. we need to get the baseCE using the */
2016 uint32_t baseCE = ucolIndirectBoundaries[src->parsedToken.indirectIndex].startCE;
2021 if((baseCE & 0xFF000000) >= (consts->UCA_PRIMARY_IMPLICIT_MIN<<24) &&
2022 (baseCE & 0xFF000000) <= (consts->UCA_PRIMARY_IMPLICIT_MAX<<24) ) { /* implicits - */
2023 uint32_t primary = (baseCE & UCOL_PRIMARYMASK) | ((baseContCE & UCOL_PRIMARYMASK) >> 16);
2029 /*int32_t invPos = ucol_inv_getPrevCE(baseCE, baseContCE, &CE, &SecondCE, strength);*/
2030 ucol_inv_getPrevCE(src, baseCE, baseContCE, &CE, &SecondCE, strength);
2033 ListList[src->resultLen].baseCE = CE;
2045 Create new list, create new sourceToken, make the baseCE from source, put
2067 ListList[src->resultLen].baseCE = CE & 0xFFFFFF3F;
2085 ListList[src->resultLen].baseCE = ucolIndirectBoundaries[src->parsedToken.indirectIndex].startCE;