Searched refs:newGapStart (Results 1 - 2 of 2) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DGapVector.java255 protected void shiftGap(int newGapStart) { argument
256 if (newGapStart == g0) {
260 int dg = newGapStart - oldGapStart;
265 g0 = newGapStart;
272 System.arraycopy(array, newGapStart, array, newGapEnd, -dg);
284 protected void shiftGapStartDown(int newGapStart) { argument
285 g0 = newGapStart;
H A DGapContent.java376 protected void shiftGap(int newGapStart) { argument
378 int dg = newGapStart - oldGapStart;
384 super.shiftGap(newGapStart);
400 int adjustIndex = findMarkAdjustIndex(newGapStart);
441 protected void shiftGapStartDown(int newGapStart) { argument
442 // Push aside all marks from oldGapStart down to newGapStart.
443 int adjustIndex = findMarkAdjustIndex(newGapStart);
457 super.shiftGapStartDown(newGapStart);

Completed in 93 milliseconds