Searched refs:embeddings (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/text/
H A DBidi.java114 * of the level. Positive values from 1 to 62 indicate embeddings. Where values are
139 * The embeddings array may be null. If present, the values represent embedding level
141 * of the level. Positive values from 1 to 61 indicate embeddings. Where values are
145 * @param embeddings an array containing embedding values for each character in the paragraph.
148 * @param paragraphLength the length of the paragraph in the text and embeddings arrays.
154 public Bidi(char[] text, int textStart, byte[] embeddings, int embStart, int paragraphLength, int flags) { argument
166 if (embeddings != null && (embStart < 0 || paragraphLength > embeddings.length - embStart)) {
169 " for embeddings of length: " + text.length);
172 bidiBase = new BidiBase(text, textStart, embeddings, embStar
[all...]
/openjdk7/jdk/test/java/text/Bidi/
H A DBidiConformance.java324 byte[][] embeddings = (c.length < emb4Constructor3[1][0].length) ?
328 for (int embNo = 0; embNo < embeddings.length; embNo++) {
333 "\", 0, embeddings={" + toString(embeddings[embNo]) +
338 bidi = new Bidi(c, 0, embeddings[embNo], 0,
496 byte[] embeddings = {0, 0, 0, 0, 0};
500 bidi = new Bidi(null, 0, embeddings, 0, 5,
513 bidi = new Bidi(text, -1, embeddings, 0, 5,
526 bidi = new Bidi(text, 4, embeddings, 0, 2,
550 "} when embeddings ar
[all...]
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiBase.java1330 * after taking the explicit embeddings into account.
1544 * after taking the explicit embeddings into account.
2574 * Examples for "insignificant" ones are empty embeddings
2670 * 62 indicate embeddings. Where values are zero or not defined, the base
3049 * The embeddings array may be null. If present, the values represent
3052 * 61 indicate embeddings. Where values are zero, the base embedding level
3060 * @param embeddings an array containing embedding values for each character
3066 * embeddings arrays.
3072 * @throws IllegalArgumentException if the values in embeddings are
3083 byte[] embeddings,
3081 BidiBase(char[] text, int textStart, byte[] embeddings, int embStart, int paragraphLength, int flags) argument
[all...]

Completed in 41 milliseconds