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

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DStyledParagraph.java220 * the exception of deleting a single character at deletePos.
222 * @param deletePos the index where a character was removed
228 int deletePos,
232 // at deletePos. We could do more work and check the individual
234 deletePos -= aci.getBeginIndex();
241 if (oldParagraph.getRunLimit(deletePos) == deletePos+1) {
242 if (deletePos == 0 || oldParagraph.getRunLimit(deletePos-1) == deletePos) {
226 deleteChar(AttributedCharacterIterator aci, char[] chars, int deletePos, StyledParagraph oldParagraph) argument
[all...]
H A DLineBreakMeasurer.java513 * @param deletePos the position in the text at which the character
515 * @throws IndexOutOfBoundsException if <code>deletePos</code> is
523 int deletePos) {
525 measurer.deleteChar(newParagraph, deletePos);
522 deleteChar(AttributedCharacterIterator newParagraph, int deletePos) argument
H A DTextMeasurer.java712 * @param deletePos the position in the text where the character was removed.
716 * @throws IndexOutOfBoundsException if <code>deletePos</code> is
722 public void deleteChar(AttributedCharacterIterator newParagraph, int deletePos) { argument
731 int changedIndex = deletePos-fStart;
733 System.arraycopy(fChars, 0, newChars, 0, deletePos-fStart);
734 System.arraycopy(fChars, changedIndex+1, newChars, changedIndex, end-deletePos);
746 deletePos,

Completed in 45 milliseconds