/external/icu/android_icu4j/src/main/java/android/icu/text/ |
BidiWriter.java | 298 byte[] dirProps = bidi.dirProps; 312 dirProps[bidiRun.start] != Bidi.L) { 330 dirProps[bidiRun.limit - 1] != Bidi.L) { 363 (MASK_R_AL & Bidi.DirPropFlag(dirProps[bidiRun.start])) == 0) { 397 byte[] dirProps = bidi.dirProps; 403 if (dirProps[bidiRun.limit - 1] != Bidi.L) { 410 if (dirProps[bidiRun.start] != Bidi.L) { 414 if ((MASK_R_AL & Bidi.DirPropFlag(dirProps[bidiRun.start])) == 0) [all...] |
Bidi.java | 465 * Note that this implementation modifies the dirProps 473 * them back to the dirProps array. [all...] |
BidiLine.java | 30 * and a dirProps array. 32 * Only if the length of the text is zero, then levels==dirProps==NULL. 64 * paragraph's levels and dirProps arrays are reused by way of setting 86 byte[] dirProps = bidi.dirProps; 97 if (dirProps[start - 1] == Bidi.B) { 103 (Bidi.DirPropFlag(dirProps[start - 1]) & Bidi.MASK_WS) != 0) { 145 /* copy proper subset of DirProps */ 147 lineBidi.dirProps = lineBidi.dirPropsMemory; 148 System.arraycopy(paraBidi.dirProps, start, lineBidi.dirProps, 0 [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
BidiWriter.java | 297 byte[] dirProps = bidi.dirProps; 311 dirProps[bidiRun.start] != Bidi.L) { 329 dirProps[bidiRun.limit - 1] != Bidi.L) { 362 (MASK_R_AL & Bidi.DirPropFlag(dirProps[bidiRun.start])) == 0) { 396 byte[] dirProps = bidi.dirProps; 402 if (dirProps[bidiRun.limit - 1] != Bidi.L) { 409 if (dirProps[bidiRun.start] != Bidi.L) { 413 if ((MASK_R_AL & Bidi.DirPropFlag(dirProps[bidiRun.start])) == 0) [all...] |
Bidi.java | 465 * Note that this implementation modifies the dirProps 473 * them back to the dirProps array. [all...] |
BidiLine.java | 29 * and a dirProps array. 31 * Only if the length of the text is zero, then levels==dirProps==NULL. 63 * paragraph's levels and dirProps arrays are reused by way of setting 85 byte[] dirProps = bidi.dirProps; 96 if (dirProps[start - 1] == Bidi.B) { 102 (Bidi.DirPropFlag(dirProps[start - 1]) & Bidi.MASK_WS) != 0) { 144 /* copy proper subset of DirProps */ 146 lineBidi.dirProps = lineBidi.dirPropsMemory; 147 System.arraycopy(paraBidi.dirProps, start, lineBidi.dirProps, 0 [all...] |
/external/icu/icu4c/source/common/ |
ubidiwrt.c | 452 const DirProp *dirProps=pBiDi->dirProps; 469 (/*run>0 &&*/ dirProps[logicalStart]!=L)) { 495 (/*run<runCount-1 &&*/ dirProps[logicalStart+runLength-1]!=L)) { 513 (/*run>0 &&*/ !(MASK_R_AL&DIRPROP_FLAG(dirProps[logicalStart+runLength-1])))) { 539 (/*run<runCount-1 &&*/ !(MASK_R_AL&DIRPROP_FLAG(dirProps[logicalStart])))) { 579 const DirProp *dirProps=pBiDi->dirProps; 589 if(/*run<runCount-1 &&*/ dirProps[logicalStart+runLength-1]!=L) { 604 if(/*run>0 &&*/ dirProps[logicalStart]!=L) [all...] |
ubidi.c | 63 * Note that this implementation modifies the dirProps 71 * them back to the dirProps array. 431 DirProp *dirProps=pBiDi->dirPropsMemory; /* pBiDi->dirProps is const */ 500 dirProps[i-1]=dirProp; 503 dirProps[i-2]=BN; 515 /* dirProps[isolateStartStack[stackLast]]=LRI; */ 530 dirProps[isolateStartStack[stackLast]]=RLI; 547 dirProps[i-1]=LRI; /* default if no strong char */ 558 /* dirProps[isolateStartStack[stackLast]]=LRI; * [all...] |
ubidiln.c | 36 * and a dirProps array. 38 * Only if the length of the text is zero, then levels==dirProps==NULL. 70 * paragraph's levels and dirProps arrays are reused by way of setting 93 const DirProp *dirProps=pBiDi->dirProps; 104 if(dirProps[start-1]==B) { 109 while(start>0 && DIRPROP_FLAG(dirProps[start-1])&MASK_WS) { 168 pLineBiDi->dirProps=pParaBiDi->dirProps+start; [all...] |
ubidiimp.h | 290 DirProp *dirProps;
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/ |
TestBidi.java | 53 string = getStringFromDirProps(test.dirProps); 98 short[] dirProps = test.dirProps; 119 + TestData.dirPropNames[dirProps[lineStart + i]] + " " 363 private String getStringFromDirProps(short[] dirProps) { 366 if (dirProps == null) { 369 int length = dirProps.length; 374 buffer[i] = charFromDirProp[dirProps[i]];
|
TestData.java | 241 protected short[] dirProps; 250 private TestData(short[] dirProps, int lineStart, int lineLimit, 253 this.dirProps = dirProps;
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
TestBidi.java | 49 string = getStringFromDirProps(test.dirProps); 94 short[] dirProps = test.dirProps; 115 + TestData.dirPropNames[dirProps[lineStart + i]] + " " 359 private String getStringFromDirProps(short[] dirProps) { 362 if (dirProps == null) { 365 int length = dirProps.length; 370 buffer[i] = charFromDirProp[dirProps[i]];
|
TestData.java | 240 protected short[] dirProps; 249 private TestData(short[] dirProps, int lineStart, int lineLimit, 252 this.dirProps = dirProps;
|
/external/icu/icu4c/source/test/cintltst/ |
cbiditst.c | 118 getStringFromDirProps(const uint8_t *dirProps, int32_t length, UChar *buffer); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
com.ibm.icu_4.2.1.v20100412.jar | |
/external/libgdx/backends/gdx-backend-moe/libs/ |
intel-moe-core.jar | |
/prebuilts/misc/common/icu4j/ |
icu4j.jar | |
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/ |
icu4j-53.1.jar | |
/prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/ |
icu4j-54.1.1.jar | |