Searched refs:chInfo (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/text/
H A DStaticLayoutBidiTest.java91 byte[] chInfo = new byte[n];
93 int resultDir = AndroidBidi.bidi(dir, chs, chInfo, n, false);
98 sb.append(" ").append(String.valueOf(chInfo[i]));
105 resultLevelChars[i] = (char)('0' + chInfo[i]);
/frameworks/base/core/java/android/text/
H A DAndroidBidi.java27 public static int bidi(int dir, char[] chs, byte[] chInfo, int n, boolean haveInfo) { argument
28 if (chs == null || chInfo == null) {
32 if (n < 0 || chs.length < n || chInfo.length < n) {
44 int result = runBidi(dir, chs, chInfo, n, haveInfo);
179 private native static int runBidi(int dir, char[] chs, byte[] chInfo, int n, boolean haveInfo); argument

Completed in 83 milliseconds