Searched defs:bidi (Results 1 - 6 of 6) sorted by relevance
/openjdk7/jdk/src/share/classes/sun/text/bidi/ |
H A D | BidiRun.java | 40 package sun.text.bidi; 63 if <0, count of bidi controls within run */
|
H A D | BidiLine.java | 40 package sun.text.bidi; 143 public static Bidi setLine(Bidi bidi, BidiBase paraBidi, argument
|
H A D | BidiBase.java | 53 package sun.text.bidi; 208 * package com.ibm.icu.dev.test.bidi; 2674 * digits to other decimal digits before running the bidi algorithm. This 2840 BidiBase bidi = paraBidi; /* get Para object if Line object */ 2841 verifyRange(charIndex, 0, bidi.length); 2843 for (paraIndex = 0; charIndex >= bidi.paras[paraIndex]; paraIndex++) { 2887 public Bidi setLine(Bidi bidi, BidiBase bidiBase, Bidi newBidi, BidiBase newBidiBase, int start, int limit) argument 2893 return BidiLine.setLine(bidi, this, newBidi, newBidiBase, start, limit); 3320 * Return true if the specified text requires bidi analysis. If this returns 3330 * @return true if the range of characters requires bidi analysi [all...] |
/openjdk7/jdk/src/share/classes/sun/font/ |
H A D | BidiUtils.java | 54 public static void getLevels(Bidi bidi, byte[] levels, int start) { argument 55 int limit = start + bidi.getLength(); 62 int runCount = bidi.getRunCount(); 65 int rlimit = start + bidi.getRunLimit(i); 66 byte rlevel = (byte)bidi.getRunLevel(i); 75 * Return an array containing the resolved bidi level of each character, in logical order. 78 public static byte[] getLevels(Bidi bidi) { argument 79 byte[] levels = new byte[bidi.getLength()]; 80 getLevels(bidi, levels, 0); 335 * @param levels an array representing the bidi leve [all...] |
H A D | TextLabelFactory.java | 40 * doesn't change-- the render context, context, and bidi info for the context-- and gets 55 private Bidi bidi; field in class:TextLabelFactory 65 * @param bidi the bidi information for the paragraph text, or null if the 70 Bidi bidi, 74 this.bidi = bidi; 76 this.lineBidi = bidi; 90 return bidi; 118 if (bidi ! 68 TextLabelFactory(FontRenderContext frc, char[] text, Bidi bidi, int flags) argument [all...] |
/openjdk7/jdk/test/java/text/Bidi/ |
H A D | BidiConformance.java | 112 Bidi bidi; 132 bidi = new Bidi(astr.getIterator()); 134 callTestEachMethod4Constructor1(textNo, testNo, bidi); 145 bidi = new Bidi(astr.getIterator()); 146 callTestEachMethod4Constructor1(textNo, testNo, bidi); 157 bidi = new Bidi(astr.getIterator()); 158 callTestEachMethod4Constructor1(textNo, testNo, bidi); 169 bidi = new Bidi(astr.getIterator()); 170 callTestEachMethod4Constructor1(textNo, testNo, bidi); 181 bidi 650 callTestEachMethod4Constructor1(int textNo, int testNo, Bidi bidi) argument 661 callTestEachMethod4Constructor2(int textNo, int flagNo, Bidi bidi) argument 672 callTestEachMethod4Constructor3(int textNo, int dataNo, Bidi bidi) argument 684 testEachMethod(Bidi bidi, String text, String expectedLevels, boolean expectedBaseIsLTR, boolean expectedIsLTR, boolean expectedIsRTL ) argument [all...] |
Completed in 47 milliseconds