Searched refs:orderParagraphsLTR (Results 1 - 14 of 14) sorted by relevance

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
H A DTestMultipleParagraphs.java86 boolean orderParagraphsLTR;
206 /* check level of block separator at end of paragraph when orderParagraphsLTR==FALSE */
254 orderParagraphsLTR = bidi.isOrderParagraphsLTR();
255 assertFalse("orderParagraphsLTR is true", orderParagraphsLTR);
256 bidi.orderParagraphsLTR(true);
257 orderParagraphsLTR = bidi.isOrderParagraphsLTR();
258 assertTrue("orderParagraphsLTR is false", orderParagraphsLTR);
260 /* check level of block separator at end of paragraph when orderParagraphsLTR
[all...]
H A DTestContext.java81 bidi.orderParagraphsLTR(true);
H A DTestStreaming.java90 bidi.orderParagraphsLTR(true);
H A DTestBidi.java498 bidi.orderParagraphsLTR(true);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestMultipleParagraphs.java85 boolean orderParagraphsLTR;
205 /* check level of block separator at end of paragraph when orderParagraphsLTR==FALSE */
253 orderParagraphsLTR = bidi.isOrderParagraphsLTR();
254 assertFalse("orderParagraphsLTR is true", orderParagraphsLTR);
255 bidi.orderParagraphsLTR(true);
256 orderParagraphsLTR = bidi.isOrderParagraphsLTR();
257 assertTrue("orderParagraphsLTR is false", orderParagraphsLTR);
259 /* check level of block separator at end of paragraph when orderParagraphsLTR
[all...]
H A DTestContext.java80 bidi.orderParagraphsLTR(true);
H A DTestStreaming.java89 bidi.orderParagraphsLTR(true);
H A DTestBidi.java497 bidi.orderParagraphsLTR(true);
/external/icu/icu4c/source/common/unicode/
H A Dubidi.h659 * @param orderParagraphsLTR specifies whether paragraph separators (B) must
666 ubidi_orderParagraphsLTR(UBiDi *pBiDi, UBool orderParagraphsLTR);
1013 * argument <code>orderParagraphsLTR</code> set to <code>TRUE</code> before
/external/icu/icu4c/source/common/
H A Dubidi.c637 if(pBiDi->orderParagraphsLTR && (flags&DIRPROP_FLAG(B))) {
1324 if(pBiDi->orderParagraphsLTR && (flags&DIRPROP_FLAG(B)))
2273 UBool orderParagraphsLTR=pBiDi->orderParagraphsLTR; local
2280 if(orderParagraphsLTR&&(flag&DIRPROP_FLAG(B))) {
2293 } else if(orderParagraphsLTR&&(flag&DIRPROP_FLAG(B))) {
2837 ubidi_orderParagraphsLTR(UBiDi *pBiDi, UBool orderParagraphsLTR) { argument
2839 pBiDi->orderParagraphsLTR=orderParagraphsLTR;
2846 return pBiDi->orderParagraphsLTR;
[all...]
H A Dubidiimp.h312 UBool orderParagraphsLTR; member in struct:UBiDi
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBidi.java912 * recommended to call <code>orderParagraphsLTR(true)</code> before calling
1037 boolean orderParagraphsLTR; field in class:Bidi
1267 orderParagraphsLTR = false;
1975 if (orderParagraphsLTR && (flags & DirPropFlag(B)) != 0) {
2633 if (orderParagraphsLTR && (flags & DirPropFlag(B)) != 0) {
3537 if (orderParagraphsLTR && (flag & DirPropFlag(B)) != 0) {
3550 } else if (orderParagraphsLTR && (flag & DirPropFlag(B)) != 0) {
4320 public void orderParagraphsLTR(boolean ordarParaLTR) { method in class:Bidi
4321 orderParagraphsLTR = ordarParaLTR;
4332 return orderParagraphsLTR;
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidi.java936 * recommended to call <code>orderParagraphsLTR(true)</code> before calling
1062 boolean orderParagraphsLTR; field in class:Bidi
1295 orderParagraphsLTR = false;
2010 if (orderParagraphsLTR && (flags & DirPropFlag(B)) != 0) {
2668 if (orderParagraphsLTR && (flags & DirPropFlag(B)) != 0) {
3572 if (orderParagraphsLTR && (flag & DirPropFlag(B)) != 0) {
3585 } else if (orderParagraphsLTR && (flag & DirPropFlag(B)) != 0) {
4360 public void orderParagraphsLTR(boolean ordarParaLTR) { method in class:Bidi
4361 orderParagraphsLTR = ordarParaLTR;
4374 return orderParagraphsLTR;
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcbiditst.c1843 UBool orderParagraphsLTR; local
1945 /* check level of block separator at end of paragraph when orderParagraphsLTR==FALSE */
1986 orderParagraphsLTR=ubidi_isOrderParagraphsLTR(pBidi);
1987 if (orderParagraphsLTR) {
1988 log_err("Found orderParagraphsLTR=%d expected=%d\n", orderParagraphsLTR, FALSE);
1991 orderParagraphsLTR=ubidi_isOrderParagraphsLTR(pBidi);
1992 if (!orderParagraphsLTR) {
1993 log_err("Found orderParagraphsLTR=%d expected=%d\n", orderParagraphsLTR, TRU
[all...]

Completed in 272 milliseconds