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

/macosx-10.10/ICU-531.30/icuSources/common/unicode/
H A Dubidi.h1118 * If there is no epilogue to consider, then <code>epiLength</code>
1121 * @param epiLength is the length of the epilogue; if <code>epiLength==-1</code>
1123 * Otherwise epiLength must be >= 0. If <code>epiLength==0</code>, it means
1134 const UChar *epilogue, int32_t epiLength,
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dubidi.c2075 int32_t length=pBiDi->epiLength;
2232 if(limit==pBiDi->length && pBiDi->epiLength>0) {
2303 const UChar *epilogue, int32_t epiLength,
2307 if(pBiDi==NULL || proLength<-1 || epiLength<-1 ||
2308 (prologue==NULL && proLength!=0) || (epilogue==NULL && epiLength!=0)) {
2318 if(epiLength==-1) {
2319 pBiDi->epiLength=u_strlen(epilogue);
2321 pBiDi->epiLength=epiLength;
2330 pBiDi->epiLength
2301 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
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dcbiditst.c4825 int32_t proLength, epiLength, srcLen, destLen, tc; local
4843 /* test epiLength < -1 */
4846 testOK &= assertIllegalArgument("Error when epiLength < -1", &rc);
4860 epiLength = strlen(cc.epilogue);
4861 pseudoToU16(epiLength, cc.epilogue, epilogue);
4865 ubidi_setContext(pBiDi, epilogue, epiLength, prologue, proLength, &rc);

Completed in 138 milliseconds