Home | History | Annotate | Download | only in common

Lines Matching refs:paraLevel

434     UBool isDefaultLevel=IS_DEFAULT_LEVEL(pBiDi->paraLevel);
446 NOT_SEEKING_STRONG, /* 0: not contextual paraLevel, not after FSI */
469 paraLevel&1;
484 pBiDi->paras[0].level=pBiDi->paraLevel;
583 pBiDi->paras[pBiDi->paraCount-1].level=pBiDi->paraLevel;
620 pBiDi->paraLevel=pBiDi->paras[0].level;
1242 flags|=DIRPROP_FLAG_LR(pBiDi->paraLevel);
1308 flags|=DIRPROP_FLAG_LR(pBiDi->paraLevel);
2179 /* reset a sequence of WS/BN before eop and B/S to the paragraph paraLevel */
2188 /* reset BN to the next character's paraLevel until B/S, which restarts above loop */
2245 UBiDiLevel paraLevel, UErrorCode *pErrorCode) {
2263 ubidi_setPara(pBiDi, text, length, paraLevel, NULL, pErrorCode);
2280 paraLevel&=1; /* accept only 0 or 1 */
2281 ubidi_setPara(pBiDi, text, length, paraLevel, NULL, pErrorCode);
2309 paraLevel^=1;
2319 ubidi_setPara(pBiDi, visualText, visualLength, paraLevel, NULL, pErrorCode);
2406 /* restore initial paraLevel */
2407 pBiDi->paraLevel^=1;
2433 UBiDiLevel paraLevel, UBiDiLevel *embeddingLevels,
2440 (paraLevel>UBIDI_MAX_EXPLICIT_LEVEL && paraLevel<UBIDI_DEFAULT_LTR)) {
2451 setParaRunsOnly(pBiDi, text, length, paraLevel, pErrorCode);
2459 pBiDi->paraLevel=paraLevel;
2460 pBiDi->direction=paraLevel&1;
2470 * Save the original paraLevel if contextual; otherwise, set to 0.
2472 pBiDi->defaultParaLevel=IS_DEFAULT_LEVEL(paraLevel);
2476 * For an empty paragraph, create a UBiDi object with the paraLevel and
2480 if(IS_DEFAULT_LEVEL(paraLevel)) {
2481 pBiDi->paraLevel&=1;
2484 pBiDi->flags=DIRPROP_FLAG_LR(paraLevel);
2532 /* set BN for all explicit codes, check that all levels are 0 or paraLevel..UBIDI_MAX_EXPLICIT_LEVEL */
2563 /* make sure paraLevel is even */
2564 pBiDi->paraLevel=(UBiDiLevel)((pBiDi->paraLevel+1)&~1);
2566 /* all levels are implicitly at paraLevel (important for ubidi_getLevels()) */
2570 /* make sure paraLevel is odd */
2571 pBiDi->paraLevel|=1;
2573 /* all levels are implicitly at paraLevel (important for ubidi_getLevels()) */
2804 return pBiDi->paraLevel;