Searched defs:newPos (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DUnsyncByteArrayOutputStream.java47 int newPos = pos + arg0.length;
48 if (newPos > size) {
49 expandSize(newPos);
52 pos = newPos;
56 int newPos = pos + arg2;
57 if (newPos > size) {
58 expandSize(newPos);
61 pos = newPos;
65 int newPos = pos + 1;
66 if (newPos > siz
82 expandSize(int newPos) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDataPusher.java55 private int newPos = -1; field in class:DataPusher
95 newPos = 0;
179 if (newPos >= 0) {
180 pos = newPos;
181 newPos = -1;
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DGlyphVector.java366 * @param newPos the <code>Point2D</code> at which to position the
373 public abstract void setGlyphPosition(int glyphIndex, Point2D newPos); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJBlock.java105 public int pos(int newPos) { argument
107 if(newPos>content.size() || newPos<0)
109 pos = newPos;
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInjectBytecodes.java56 private int newPos; field in class:InjectBytecodes
68 this.newDelta = newTarget - newPos;
268 newPos = map[pos];
273 traceFixedWidthInt(newPos, 4);
310 int newHeader = (newPos+1+3) & (~3); // 4byte boundry
331 int newPadding = newHeader - newPos;
344 int newHeader = (newPos+1+3) & (~3); // 4byte boundry
365 int newPadding = newHeader - newPos;
431 newPos = map[pos];
443 traceFixedWidthInt(newPos,
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_ScrollPane.cpp378 int newPos = GetScrollPos(SB_VERT); local
385 newPos = si.nTrackPos;
387 PostScrollEvent(SB_VERT, scrollCode, newPos);
395 int newPos = GetScrollPos(SB_HORZ); local
402 newPos = si.nTrackPos;
404 PostScrollEvent(SB_HORZ, scrollCode, newPos);
H A Dawt_Scrollbar.cpp308 AwtScrollbar::DoScrollCallbackCoalesce(const char* methodName, int newPos) argument
310 if (methodName == m_prevCallback && newPos == m_prevCallbackPos) {
312 methodName, newPos);
315 DoCallback(methodName, "(I)V", newPos);
317 m_prevCallbackPos = newPos;
327 int curPos, newPos; local
367 // NB: Beware arithmetic wrap when calculating newPos
372 newPos = curPos - m_lineIncr;
374 newPos = minPos;
375 if (newPos !
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java5041 Position newPos = host.getDocument().createPosition(offset);
5046 EventQueue.invokeLater(new DoSetCaretPosition(host, newPos));
5062 Position newPos; field in class:JTextComponent.DoSetCaretPosition
5064 DoSetCaretPosition(JTextComponent host, Position newPos) { argument
5066 this.newPos = newPos;
5070 host.setCaretPosition(newPos.getOffset());

Completed in 52 milliseconds