Searched defs:charIndex (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleHypertext.java76 * @param charIndex index within the text
79 public abstract int getLinkIndex(int charIndex); argument
/openjdk7/jdk/src/share/classes/sun/text/
H A DCodePointIterator.java49 public abstract int charIndex(); method in class:CodePointIterator
127 public int charIndex() { method in class:CharArrayCodePointIterator
178 public int charIndex() { method in class:CharSequenceCodePointIterator
229 public int charIndex() { method in class:CharacterIteratorCodePointIterator
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextHitInfo.java89 private int charIndex; field in class:TextHitInfo
94 * @param charIndex the index of the character hit
98 private TextHitInfo(int charIndex, boolean isLeadingEdge) { argument
99 this.charIndex = charIndex;
108 return charIndex;
128 return isLeadingEdge ? charIndex : charIndex + 1;
134 * also the <code>charIndex</code> of this <code>TextHitInfo</code>.
137 return charIndex;
183 leading(int charIndex) argument
194 trailing(int charIndex) argument
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DMPreFixups.cpp114 le_int32 charIndex = glyphStorage.getCharIndex(mpreLimit + i, success); local
117 glyphStorage.setCharIndex(mpreIndex + i, charIndex, success);
H A DLEGlyphStorage.cpp336 void LEGlyphStorage::setCharIndex(le_int32 glyphIndex, le_int32 charIndex, LEErrorCode &success) argument
352 fCharIndices[glyphIndex] = charIndex;
H A DKhmerReordering.cpp178 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask charFeatures) argument
184 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
H A DTibetanReordering.cpp180 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask featureMask) argument
186 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
H A DIndicReordering.cpp231 void writeChar(LEUnicode ch, le_uint32 charIndex, FeatureMask charFeatures) argument
237 fGlyphStorage.setCharIndex(fOutIndex, charIndex, success);
243 void setFeatures ( le_uint32 charIndex, FeatureMask charFeatures) argument
247 fGlyphStorage.setAuxData( charIndex, charFeatures, success );
251 FeatureMask getFeatures ( le_uint32 charIndex )
254 return fGlyphStorage.getAuxData(charIndex,success);
317 void insertCharacter( LEUnicode ch, le_int32 toPosition, le_int32 charIndex, le_uint32 auxData ) { argument
329 fGlyphStorage.setCharIndex(toPosition,charIndex,success);
/openjdk7/jdk/test/java/text/BreakIterator/
H A DMirroredBreakIterator.java34 private int charIndex; field in class:MirroredBreakIterator
40 charIndex = i;
131 return charIndex;
150 return charIndex = newCharIndex;
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiLine.java267 static byte getLevelAt(BidiBase bidiBase, int charIndex) argument
270 if (bidiBase.direction != BidiBase.MIXED || charIndex >= bidiBase.trailingWSStart) {
271 return bidiBase.GetParaLevelAt(charIndex);
273 return bidiBase.levels[charIndex];
H A DBidiBase.java2823 * @param charIndex is the index of a character within the text, in the
2831 * @throws IllegalArgumentException if charIndex is not within the legal range
2837 public int getParagraphIndex(int charIndex) argument
2841 verifyRange(charIndex, 0, bidi.length);
2843 for (paraIndex = 0; charIndex >= bidi.paras[paraIndex]; paraIndex++) {
2899 * @param charIndex the index of a character.
2901 * @return The level for the character at <code>charIndex</code>.
2905 * @throws IllegalArgumentException if charIndex is not in the range
2906 * <code>0&lt;=charIndex&lt;getProcessedLength()</code>
2911 public byte getLevelAt(int charIndex) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJEditorPane.java2005 * @param charIndex index within the text
2008 public int getLinkIndex(int charIndex) { argument
2016 int index = e.getElementIndex(charIndex);

Completed in 73 milliseconds