Searched refs:gotLevels (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
D | TestMultipleParagraphs.java | 84 byte[] gotLevels; in testMultipleParagraphs() 213 gotLevels = bidi.getLevels(); in testMultipleParagraphs() 216 gotLevels = new byte[bidi.getLength()]; in testMultipleParagraphs() 217 Arrays.fill(gotLevels, (byte)-1); in testMultipleParagraphs() 220 if (gotLevels[i] != Bidi.RTL) { in testMultipleParagraphs() 222 "), level = " + gotLevels[i] + ", expected = " + Bidi.RTL); in testMultipleParagraphs() 237 gotLevels = bidiLine.getLevels(); in testMultipleParagraphs() 240 gotLevels = new byte[bidiLine.getLength()]; in testMultipleParagraphs() 241 Arrays.fill(gotLevels, (byte)-1); in testMultipleParagraphs() 245 if ((gotLevel != Bidi.RTL) || (gotLevels[length - 1] != Bidi.RTL)) { in testMultipleParagraphs() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/ |
D | TestMultipleParagraphs.java | 85 byte[] gotLevels; in testMultipleParagraphs() 214 gotLevels = bidi.getLevels(); in testMultipleParagraphs() 217 gotLevels = new byte[bidi.getLength()]; in testMultipleParagraphs() 218 Arrays.fill(gotLevels, (byte)-1); in testMultipleParagraphs() 221 if (gotLevels[i] != Bidi.RTL) { in testMultipleParagraphs() 223 "), level = " + gotLevels[i] + ", expected = " + Bidi.RTL); in testMultipleParagraphs() 238 gotLevels = bidiLine.getLevels(); in testMultipleParagraphs() 241 gotLevels = new byte[bidiLine.getLength()]; in testMultipleParagraphs() 242 Arrays.fill(gotLevels, (byte)-1); in testMultipleParagraphs() 246 if ((gotLevel != Bidi.RTL) || (gotLevels[length - 1] != Bidi.RTL)) { in testMultipleParagraphs() [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | cbiditst.c | 395 const UBiDiLevel* gotLevels = ubidi_getLevels(bidi, &ec); in formatLevels() local 405 k = gotLevels[i]; in formatLevels() 1842 const UBiDiLevel* gotLevels; in testMultipleParagraphs() local 1948 gotLevels=ubidi_getLevels(pBidi, &errorCode); in testMultipleParagraphs() 1956 if (gotLevels[i]!=UBIDI_RTL) { in testMultipleParagraphs() 1958 i, src[i], gotLevels[i], UBIDI_RTL); in testMultipleParagraphs() 1973 gotLevels=ubidi_getLevels(pLine, &errorCode); in testMultipleParagraphs() 1981 if ((gotLevel!=UBIDI_RTL) || (gotLevels[length-1]!=UBIDI_RTL)) { in testMultipleParagraphs() 1984 … paraIndex, paraStart, paraLimit, gotLevel, UBIDI_RTL, gotLevels[length-1], UBIDI_RTL); in testMultipleParagraphs() 1998 gotLevels=ubidi_getLevels(pBidi, &errorCode); in testMultipleParagraphs() [all …]
|