Home
last modified time | relevance | path

Searched refs:reorderVisually (Results 1 – 4 of 4) sorted by relevance

/libcore/luni/src/test/java/libcore/java/text/
DOldBidiTest.java78 Bidi.reorderVisually(new byte[] {}, -1, new Object[] {}, 0, 0); in testReorderVisuallyIllegalArguments()
85 Bidi.reorderVisually(new byte[] {}, 0, new Object[] {}, -1, 0); in testReorderVisuallyIllegalArguments()
92 Bidi.reorderVisually(new byte[] {}, 0, new Object[] {}, 0, -1); in testReorderVisuallyIllegalArguments()
100 Bidi.reorderVisually(new byte[] {}, 0, new Object[] {}, 0, 1); in testReorderVisuallyIllegalArguments()
108 Bidi.reorderVisually(new byte[] {1, 2, 3}, 2, new Object[] {}, 0, 2); in testReorderVisuallyIllegalArguments()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DBidiTest.java875 Bidi.reorderVisually(new byte[] { 2, 1, 3, 0 }, 0, s, 0, 4); in testReorderVisually()
879 Bidi.reorderVisually(new byte[] { 1, 3 }, 0, s, 1, 2); in testReorderVisually()
883 Bidi.reorderVisually(new byte[] { 2, 1, 3, 0 }, 1, s, 1, 2); in testReorderVisually()
887 Bidi.reorderVisually(new byte[] { 2, 1, 2, 1 }, 1, s, 0, 3); in testReorderVisually()
891 Bidi.reorderVisually(new byte[] { 2, 1, 0, 1 }, 1, s, 0, 3); in testReorderVisually()
899 Bidi.reorderVisually(new byte[] { 2, 1, 3, 0 }, 0, s, 0, 5); in testBadReorderVisually()
906 Bidi.reorderVisually(new byte[] { 2, 1, 3, 0 }, 0, s, -1, 1); in testBadReorderVisually()
913 Bidi.reorderVisually(new byte[] { 2, 1, 3, 0 }, -1, s, 0, 1); in testBadReorderVisually()
920 Bidi.reorderVisually(null, 0, s, 0, 1); in testBadReorderVisually()
927 Bidi.reorderVisually(new byte[] { 2, 1, 3, 0 }, 0, null, 0, 1); in testBadReorderVisually()
[all …]
/libcore/ojluni/src/main/java/java/text/
DBidi.java398 …public static void reorderVisually(byte[] levels, int levelStart, Object[] objects, int objectStar… in reorderVisually() method in Bidi
418 android.icu.text.Bidi.reorderVisually(levels, levelStart, objects, objectStart, count); in reorderVisually()
/libcore/benchmarks/src/benchmarks/regression/
DBidiBenchmark.java50 Bidi.reorderVisually(new byte[]{2, 1, 3, 0, 4}, 0, in time_reorderVisually()