Home
last modified time | relevance | path

Searched refs:dirProps (Results 1 – 16 of 16) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DBidiWriter.java297 byte[] dirProps = bidi.dirProps; in writeReordered()
311 dirProps[bidiRun.start] != Bidi.L) { in writeReordered()
329 dirProps[bidiRun.limit - 1] != Bidi.L) { in writeReordered()
362 (MASK_R_AL & Bidi.DirPropFlag(dirProps[bidiRun.start])) == 0) { in writeReordered()
396 byte[] dirProps = bidi.dirProps; in writeReordered()
402 if (dirProps[bidiRun.limit - 1] != Bidi.L) { in writeReordered()
409 if (dirProps[bidiRun.start] != Bidi.L) { in writeReordered()
413 if ((MASK_R_AL & Bidi.DirPropFlag(dirProps[bidiRun.start])) == 0) { in writeReordered()
420 if ((MASK_R_AL & Bidi.DirPropFlag(dirProps[bidiRun.limit - 1])) == 0) { in writeReordered()
DBidi.java1045 byte[] dirProps; field in Bidi
1133 return ((DirPropFlag(dirProps[index]) & flag) != 0); in testDirPropFlagAt()
1869 dirProps[i1] = dirProp; in getDirProps()
1873 dirProps[--i1] = BN; in getDirProps()
1902 dirProps[isolateStartStack[stackLast]] = RLI; in getDirProps()
1919 dirProps[i-1] = LRI; /* default if no strong char */ in getDirProps()
2067 if ((DirPropFlag(dirProps[lastCcPos]) & MASK_ISO) != 0) /* after an isolate */ in bracketProcessBoundary()
2144 dirProps[openingPosition] = newProp; in fixN0c()
2146 dirProps[closingPosition] = newProp; in fixN0c()
2199 dirProps[pOpening.position] = newProp; in bracketProcessClosing()
[all …]
DBidiLine.java85 byte[] dirProps = bidi.dirProps; in setTrailingWSStart()
96 if (dirProps[start - 1] == Bidi.B) { in setTrailingWSStart()
102 (Bidi.DirPropFlag(dirProps[start - 1]) & Bidi.MASK_WS) != 0) { in setTrailingWSStart()
146 lineBidi.dirProps = lineBidi.dirPropsMemory; in setLine()
147 System.arraycopy(paraBidi.dirProps, start, lineBidi.dirProps, 0, in setLine()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DBidiWriter.java298 byte[] dirProps = bidi.dirProps; in writeReordered()
312 dirProps[bidiRun.start] != Bidi.L) { in writeReordered()
330 dirProps[bidiRun.limit - 1] != Bidi.L) { in writeReordered()
363 (MASK_R_AL & Bidi.DirPropFlag(dirProps[bidiRun.start])) == 0) { in writeReordered()
397 byte[] dirProps = bidi.dirProps; in writeReordered()
403 if (dirProps[bidiRun.limit - 1] != Bidi.L) { in writeReordered()
410 if (dirProps[bidiRun.start] != Bidi.L) { in writeReordered()
414 if ((MASK_R_AL & Bidi.DirPropFlag(dirProps[bidiRun.start])) == 0) { in writeReordered()
421 if ((MASK_R_AL & Bidi.DirPropFlag(dirProps[bidiRun.limit - 1])) == 0) { in writeReordered()
DBidi.java1019 byte[] dirProps; field in Bidi
1107 return ((DirPropFlag(dirProps[index]) & flag) != 0); in testDirPropFlagAt()
1833 dirProps[i1] = dirProp; in getDirProps()
1837 dirProps[--i1] = BN; in getDirProps()
1866 dirProps[isolateStartStack[stackLast]] = RLI; in getDirProps()
1883 dirProps[i-1] = LRI; /* default if no strong char */ in getDirProps()
2031 if ((DirPropFlag(dirProps[lastCcPos]) & MASK_ISO) != 0) /* after an isolate */ in bracketProcessBoundary()
2108 dirProps[openingPosition] = newProp; in fixN0c()
2110 dirProps[closingPosition] = newProp; in fixN0c()
2163 dirProps[pOpening.position] = newProp; in bracketProcessClosing()
[all …]
DBidiLine.java86 byte[] dirProps = bidi.dirProps; in setTrailingWSStart()
97 if (dirProps[start - 1] == Bidi.B) { in setTrailingWSStart()
103 (Bidi.DirPropFlag(dirProps[start - 1]) & Bidi.MASK_WS) != 0) { in setTrailingWSStart()
147 lineBidi.dirProps = lineBidi.dirPropsMemory; in setLine()
148 System.arraycopy(paraBidi.dirProps, start, lineBidi.dirProps, 0, in setLine()
/external/icu/icu4c/source/common/
Dubidi.c431 DirProp *dirProps=pBiDi->dirPropsMemory; /* pBiDi->dirProps is const */ in getDirProps() local
500 dirProps[i-1]=dirProp; in getDirProps()
503 dirProps[i-2]=BN; in getDirProps()
530 dirProps[isolateStartStack[stackLast]]=RLI; in getDirProps()
547 dirProps[i-1]=LRI; /* default if no strong char */ in getDirProps()
706 DirProp *dirProps=bd->pBiDi->dirProps; in bracketProcessBoundary() local
707 if(DIRPROP_FLAG(dirProps[lastCcPos])&MASK_ISO) /* after an isolate */ in bracketProcessBoundary()
772 DirProp *dirProps=bd->pBiDi->dirProps; in fixN0c() local
784 dirProps[openingPosition]=newProp; in fixN0c()
786 dirProps[closingPosition]=newProp; in fixN0c()
[all …]
Dubidiwrt.c452 const DirProp *dirProps=pBiDi->dirProps; in ubidi_writeReordered() local
469 (/*run>0 &&*/ dirProps[logicalStart]!=L)) { in ubidi_writeReordered()
495 (/*run<runCount-1 &&*/ dirProps[logicalStart+runLength-1]!=L)) { in ubidi_writeReordered()
513 … (/*run>0 &&*/ !(MASK_R_AL&DIRPROP_FLAG(dirProps[logicalStart+runLength-1])))) { in ubidi_writeReordered()
539 (/*run<runCount-1 &&*/ !(MASK_R_AL&DIRPROP_FLAG(dirProps[logicalStart])))) { in ubidi_writeReordered()
579 const DirProp *dirProps=pBiDi->dirProps; in ubidi_writeReordered() local
589 if(/*run<runCount-1 &&*/ dirProps[logicalStart+runLength-1]!=L) { in ubidi_writeReordered()
604 if(/*run>0 &&*/ dirProps[logicalStart]!=L) { in ubidi_writeReordered()
611 if(/*run<runCount-1 &&*/ !(MASK_R_AL&DIRPROP_FLAG(dirProps[logicalStart]))) { in ubidi_writeReordered()
626 if(/*run>0 &&*/ !(MASK_R_AL&DIRPROP_FLAG(dirProps[logicalStart+runLength-1]))) { in ubidi_writeReordered()
Dubidiln.c93 const DirProp *dirProps=pBiDi->dirProps; in setTrailingWSStart() local
104 if(dirProps[start-1]==B) { in setTrailingWSStart()
109 while(start>0 && DIRPROP_FLAG(dirProps[start-1])&MASK_WS) { in setTrailingWSStart()
168 pLineBiDi->dirProps=pParaBiDi->dirProps+start; in ubidi_setLine()
Dubidiimp.h290 DirProp *dirProps; member
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/
DTestBidi.java53 string = getStringFromDirProps(test.dirProps); in doTests()
98 short[] dirProps = test.dirProps; in doTest() local
119 + TestData.dirPropNames[dirProps[lineStart + i]] + " " in doTest()
363 private String getStringFromDirProps(short[] dirProps) { in getStringFromDirProps() argument
366 if (dirProps == null) { in getStringFromDirProps()
369 int length = dirProps.length; in getStringFromDirProps()
374 buffer[i] = charFromDirProp[dirProps[i]]; in getStringFromDirProps()
DTestData.java241 protected short[] dirProps; field in TestData
250 private TestData(short[] dirProps, int lineStart, int lineLimit, in TestData() argument
253 this.dirProps = dirProps; in TestData()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
DTestBidi.java49 string = getStringFromDirProps(test.dirProps); in doTests()
94 short[] dirProps = test.dirProps; in doTest() local
115 + TestData.dirPropNames[dirProps[lineStart + i]] + " " in doTest()
359 private String getStringFromDirProps(short[] dirProps) { in getStringFromDirProps() argument
362 if (dirProps == null) { in getStringFromDirProps()
365 int length = dirProps.length; in getStringFromDirProps()
370 buffer[i] = charFromDirProp[dirProps[i]]; in getStringFromDirProps()
DTestData.java240 protected short[] dirProps; field in TestData
249 private TestData(short[] dirProps, int lineStart, int lineLimit, in TestData() argument
252 this.dirProps = dirProps; in TestData()
/external/icu/icu4c/source/test/cintltst/
Dcbiditst.c118 getStringFromDirProps(const uint8_t *dirProps, int32_t length, UChar *buffer);
1034 const uint8_t *dirProps=test->text+lineStart; in doTest() local
1059 dirPropNames[dirProps[i]], in doTest()
3581 getStringFromDirProps(const uint8_t *dirProps, int32_t length, UChar *buffer) { in getStringFromDirProps() argument
3588 buffer[i]=charFromDirProp[dirProps[i]]; in getStringFromDirProps()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...