Searched refs:epiLength (Results 1 - 4 of 4) sorted by relevance

/external/icu/icu4c/source/common/unicode/
H A Dubidi.h1124 * If there is no epilogue to consider, then <code>epiLength</code>
1127 * @param epiLength is the length of the epilogue; if <code>epiLength==-1</code>
1129 * Otherwise epiLength must be >= 0. If <code>epiLength==0</code>, it means
1140 const UChar *epilogue, int32_t epiLength,
/external/icu/icu4c/source/common/
H A Dubidi.cpp2104 int32_t length=pBiDi->epiLength;
2264 if(limit==pBiDi->length && pBiDi->epiLength>0) {
2335 const UChar *epilogue, int32_t epiLength,
2339 if(pBiDi==NULL || proLength<-1 || epiLength<-1 ||
2340 (prologue==NULL && proLength!=0) || (epilogue==NULL && epiLength!=0)) {
2350 if(epiLength==-1) {
2351 pBiDi->epiLength=u_strlen(epilogue);
2353 pBiDi->epiLength=epiLength;
2362 pBiDi->epiLength
2333 ubidi_setContext(UBiDi *pBiDi, const UChar *prologue, int32_t proLength, const UChar *epilogue, int32_t epiLength, UErrorCode *pErrorCode) argument
[all...]
H A Dubidiimp.h324 int32_t epiLength; member in struct:UBiDi
/external/icu/icu4c/source/test/cintltst/
H A Dcbiditst.c4831 int32_t proLength, epiLength, srcLen, destLen, tc; local
4849 /* test epiLength < -1 */
4852 testOK &= assertIllegalArgument("Error when epiLength < -1", &rc);
4866 epiLength = strlen(cc.epilogue);
4867 pseudoToU16(epiLength, cc.epilogue, epilogue);
4871 ubidi_setContext(pBiDi, epilogue, epiLength, prologue, proLength, &rc);

Completed in 107 milliseconds