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

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultFormatter.java466 int newOffset = getNextNavigatableChar(offset, direction);
470 if (direction == -1 && offset == newOffset) {
473 newOffset = getNextNavigatableChar(newOffset, 1);
474 if (newOffset >= max) {
475 newOffset = offset;
478 else if (direction == 1 && newOffset >= max) {
480 newOffset = getNextNavigatableChar(max - 1, -1);
481 if (newOffset < max) {
482 newOffset
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DCollationElementIterator.java412 * @param newOffset The new character offset into the original text.
415 public void setOffset(int newOffset) argument
418 if (newOffset < text.getBeginIndex()
419 || newOffset >= text.getEndIndex()) {
420 text.setIndexOnly(newOffset);
422 int c = text.setIndex(newOffset);
438 while (text.getIndex() <= newOffset) {
445 // newOffset
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java2130 int newOffset; // future offset of a jump instruction
2160 newOffset = getNewOffset(allIndexes, allSizes, u, label);
2161 if (newOffset < Short.MIN_VALUE
2162 || newOffset > Short.MAX_VALUE)
2195 // = ((3 - newOffset%4) - (3 - u%4)) - u%4
2196 // = (-newOffset%4 + u%4) - u%4
2197 // = -(newOffset & 3)
2198 newOffset = getNewOffset(allIndexes, allSizes, 0, u);
2199 insert = -(newOffset & 3);
2214 newOffset
[all...]

Completed in 38 milliseconds