Home | History | Annotate | Download | only in common

Lines Matching refs:charIndex

253 ubidi_getLevelAt(const UBiDi *pBiDi, int32_t charIndex) {
255 if(!IS_VALID_PARA_OR_LINE(pBiDi) || charIndex<0 || pBiDi->length<=charIndex) {
257 } else if(pBiDi->direction!=UBIDI_MIXED || charIndex>=pBiDi->trailingWSStart) {
258 return GET_PARALEVEL(pBiDi, charIndex);
260 return pBiDi->levels[charIndex];