Home | History | Annotate | Download | only in common

Lines Matching refs:paraLevel

398     UBool isDefaultLevel=IS_DEFAULT_LEVEL(pBiDi->paraLevel);
410 NOT_CONTEXTUAL, /* 0: not contextual paraLevel */
427 paraDirDefault=pBiDi->paraLevel&1 ? CONTEXT_RTL : 0;
520 pBiDi->paraLevel=GET_PARALEVEL(pBiDi, 0);
531 /* The following line does nothing new for contextual paraLevel, but is
532 needed for absolute paraLevel. */
533 flags|=DIRPROP_FLAG_LR(pBiDi->paraLevel);
757 flags|=DIRPROP_FLAG_LR(pBiDi->paraLevel);
820 flags|=DIRPROP_FLAG_LR(pBiDi->paraLevel);
1640 /* reset a sequence of WS/BN before eop and B/S to the paragraph paraLevel */
1649 /* reset BN to the next character's paraLevel until B/S, which restarts above loop */
1705 UBiDiLevel paraLevel, UErrorCode *pErrorCode) {
1723 ubidi_setPara(pBiDi, text, length, paraLevel, NULL, pErrorCode);
1740 paraLevel&=1; /* accept only 0 or 1 */
1741 ubidi_setPara(pBiDi, text, length, paraLevel, NULL, pErrorCode);
1769 paraLevel^=1;
1779 ubidi_setPara(pBiDi, visualText, visualLength, paraLevel, NULL, pErrorCode);
1866 /* restore initial paraLevel */
1867 pBiDi->paraLevel^=1;
1893 UBiDiLevel paraLevel, UBiDiLevel *embeddingLevels,
1900 (paraLevel>UBIDI_MAX_EXPLICIT_LEVEL && paraLevel<UBIDI_DEFAULT_LTR)) {
1911 setParaRunsOnly(pBiDi, text, length, paraLevel, pErrorCode);
1919 pBiDi->paraLevel=paraLevel;
1930 * Save the original paraLevel if contextual; otherwise, set to 0.
1932 if(IS_DEFAULT_LEVEL(paraLevel)) {
1933 pBiDi->defaultParaLevel=paraLevel;
1940 * For an empty paragraph, create a UBiDi object with the paraLevel and
1944 if(IS_DEFAULT_LEVEL(paraLevel)) {
1945 pBiDi->paraLevel&=1;
1948 if(paraLevel&1) {
2005 /* set BN for all explicit codes, check that all levels are 0 or paraLevel..UBIDI_MAX_EXPLICIT_LEVEL */
2020 /* make sure paraLevel is even */
2021 pBiDi->paraLevel=(UBiDiLevel)((pBiDi->paraLevel+1)&~1);
2023 /* all levels are implicitly at paraLevel (important for ubidi_getLevels()) */
2027 /* make sure paraLevel is odd */
2028 pBiDi->paraLevel|=1;
2030 /* all levels are implicitly at paraLevel (important for ubidi_getLevels()) */
2260 return pBiDi->paraLevel;