Home | History | Annotate | Download | only in text

Lines Matching defs:paraLevel

92  * <code>paraLevel</code> and <code>embeddingLevels</code>
99 * <li><code>paraLevel</code> can be set to the
356 * byte paraLevel = (byte)(1 &amp; para.getParaLevel());
371 * startLine(paraLevel, width);
394 * startLine(paraLevel, width);
1065 byte paraLevel;
1066 /* original paraLevel when contextual */
1087 /* implicitly at the paraLevel (rule (L1)) - levels may not reflect that */
1300 paraLevel = 0;
1550 * <code>paraLevel</code> in <code>setPara</code>) is even, the source text
1799 static final int NOT_SEEKING_STRONG = 0; /* 0: not contextual paraLevel, not after FSI */
1811 boolean isDefaultLevel = IsDefaultLevel(paraLevel);
1839 defaultParaLevel = (byte)(paraLevel & 1);
1855 paras_level[0] = paraLevel;
1965 paras_level[paraCount - 1] = paraLevel;
2003 paraLevel = paras_level[0];
2019 return paraLevel;
2666 flags |= DirPropFlagLR(paraLevel);
2695 byte currentParaLevel = paraLevel;
2745 flags |= DirPropFlagLR(paraLevel);
3570 /* reset a sequence of WS/BN before eop and B/S to the paragraph paraLevel */
3579 /* reset BN to the next character's paraLevel until B/S, which restarts above loop */
3613 * DEFAULT_RTL as paraLevel and is preceded by a call to
3646 * &nbsp;&nbsp;paraLevel = LTR<br>
3820 /* restore initial paraLevel */
3821 this.paraLevel ^= 1;
3870 * @param paraLevel specifies the default level for the text;
3873 * then <code>paraLevel</code> can be set to
3888 * <code>paraLevel&lt;=embeddingLevels[]&lt;=MAX_EXPLICIT_LEVEL</code>,
3914 public void setPara(String text, byte paraLevel, byte[] embeddingLevels)
3917 setPara(new char[0], paraLevel, embeddingLevels);
3919 setPara(text.toCharArray(), paraLevel, embeddingLevels);
3955 * @param paraLevel specifies the default level for the text;
3958 * then <code>paraLevel</code> can be set to
3973 * <code>paraLevel&lt;=embeddingLevels[]&lt;=MAX_EXPLICIT_LEVEL</code>,
3999 public void setPara(char[] chars, byte paraLevel, byte[] embeddingLevels)
4002 if (paraLevel < LEVEL_DEFAULT_LTR) {
4003 verifyRange(paraLevel, 0, MAX_EXPLICIT_LEVEL + 1);
4011 setParaRunsOnly(chars, paraLevel);
4019 this.paraLevel = paraLevel;
4020 this.direction = (byte)(paraLevel & 1);
4034 * Save the original paraLevel if contextual; otherwise, set to 0.
4036 defaultParaLevel = IsDefaultLevel(paraLevel) ? paraLevel : 0;
4040 * For an empty paragraph, create a Bidi object with the paraLevel and
4044 if (IsDefaultLevel(paraLevel)) {
4045 this.paraLevel &= 1;
4048 flags = DirPropFlagLR(paraLevel);
4075 /* set BN for all explicit codes, check that all levels are 0 or paraLevel..MAX_EXPLICIT_LEVEL */
4093 /* all levels are implicitly at paraLevel (important for getLevels()) */
4097 /* all levels are implicitly at paraLevel (important for getLevels()) */
4538 * level may vary if the required paraLevel is LEVEL_DEFAULT_LTR or
4554 return paraLevel;
5461 return (getDirection() == LTR && (paraLevel & 1) == 0);
5477 return (getDirection() == RTL && (paraLevel & 1) == 1);