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

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGapVector.java254 protected void shiftGap(int newGapStart) { argument
255 if (newGapStart == g0) {
259 int dg = newGapStart - oldGapStart;
264 g0 = newGapStart;
271 System.arraycopy(array, newGapStart, array, newGapEnd, -dg);
283 protected void shiftGapStartDown(int newGapStart) { argument
284 g0 = newGapStart;
H A DGapContent.java375 protected void shiftGap(int newGapStart) { argument
377 int dg = newGapStart - oldGapStart;
383 super.shiftGap(newGapStart);
399 int adjustIndex = findMarkAdjustIndex(newGapStart);
440 protected void shiftGapStartDown(int newGapStart) { argument
441 // Push aside all marks from oldGapStart down to newGapStart.
442 int adjustIndex = findMarkAdjustIndex(newGapStart);
456 super.shiftGapStartDown(newGapStart);

Completed in 166 milliseconds