Lines Matching refs:srcLength
83 …uint32_t srcLength; /* input text length - not really needed as we are zer… member
131 ubidi_setPara(pTransform->pBidi, pTransform->src, pTransform->srcLength, in action_resolve()
151 *pTransform->pDestLength = pTransform->srcLength; in action_reorder()
204 ubidi_writeReverse(pTransform->src, pTransform->srcLength, in action_reverse()
207 *pTransform->pDestLength = pTransform->srcLength; in action_reverse()
245 pTransform->srcLength = u_terminateUChars(pTransform->src, in updateSrc()
260 pTransform->srcLength, pTransform->dest, pTransform->destSize, in doShape()
311 if (pTransform->destSize < pTransform->srcLength) { in action_mirror()
317 U16_NEXT(pTransform->src, i, pTransform->srcLength, c); in action_mirror()
319 } while (i < pTransform->srcLength); in action_mirror()
321 *pTransform->pDestLength = pTransform->srcLength; in action_mirror()
439 const UChar *src, int32_t srcLength, in ubiditransform_transform() argument
458 CHECK_LEN(src, srcLength, pErrorCode); in ubiditransform_transform()
469 resolveBaseDirection(src, srcLength, &inParaLevel, &outParaLevel); in ubiditransform_transform()
485 …updateSrc(pBiDiTransform, src, srcLength, destSize > srcLength ? destSize : srcLength, pErrorCode); in ubiditransform_transform()
513 if (destSize < srcLength) { in ubiditransform_transform()
516 u_strncpy(dest, src, srcLength); in ubiditransform_transform()
517 destLength = srcLength; in ubiditransform_transform()
526 pBiDiTransform->srcLength = 0; in ubiditransform_transform()