Searched defs:adj (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/
H A DScrollPaneWheelScroller.java56 Adjustable adj = getAdjustableToScroll(sp);
57 if (adj != null) {
58 increment = getIncrementFromAdjustable(adj, e);
60 log.finer("increment from adjustable(" + adj.getClass() + ") : " + increment);
62 scrollAdjustable(adj, increment);
125 public static int getIncrementFromAdjustable(Adjustable adj, argument
128 if (adj == null) {
129 log.fine("Assertion (adj != null) failed");
136 increment = e.getUnitsToScroll() * adj.getUnitIncrement();
139 increment = adj
148 scrollAdjustable(Adjustable adj, int amount) argument
[all...]
H A DAWTAccessor.java531 void setTypedValue(final ScrollPaneAdjustable adj, final int v, argument
912 public static void setScrollPaneAdjustableAccessor(ScrollPaneAdjustableAccessor adj) { argument
913 scrollPaneAdjustableAccessor = adj;
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DScrollPanePeer.java83 * @param adj the scroll pane adjustable object
88 void setUnitIncrement(Adjustable adj, int u); argument
93 * @param adj the scroll pane adjustable object
96 void setValue(Adjustable adj, int v); argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DrelocInfo_sparc.cpp145 intptr_t adj = 0; local
149 adj = -( addr() - orig_addr );
153 return call->destination() + adj;
157 return call->destination() + adj;
162 return br->jump_destination() + adj;
/openjdk7/hotspot/src/cpu/x86/vm/
H A DrelocInfo_x86.cpp77 intptr_t adj = 0; local
81 adj = -( addr() - orig_addr );
85 return nativeCall_at(addr())->destination() + adj;
87 return nativeJump_at(addr())->jump_destination() + adj;
89 return nativeGeneralJump_at(addr())->jump_destination() + adj;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWScrollPanePeer.java155 public void setUnitIncrement(Adjustable adj, int u) { argument
159 public void setValue(Adjustable adj, int v) { argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWScrollPanePeer.java64 public void setUnitIncrement(Adjustable adj, int p) { argument
113 public void setValue(Adjustable adj, int v) { argument
120 switch(adj.getOrientation()) {
195 ScrollPaneAdjustable adj = null;
203 adj = (ScrollPaneAdjustable)sp.getVAdjustable();
205 adj = (ScrollPaneAdjustable)sp.getHAdjustable();
212 if (adj == null) {
216 int newpos = adj.getValue();
219 newpos -= adj.getUnitIncrement();
222 newpos += adj
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollPanePeer.java241 public void setUnitIncrement(Adjustable adj, int u) { argument
242 if (adj.getOrientation() == Adjustable.VERTICAL) {
250 public void setValue(Adjustable adj, int v) { argument
251 if (adj.getOrientation() == Adjustable.VERTICAL) {
316 void setAdjustableValue(ScrollPaneAdjustable adj, int value, int type) { argument
317 AWTAccessor.getScrollPaneAdjustableAccessor().setTypedValue(adj, value, type);
/openjdk7/hotspot/src/share/vm/opto/
H A Dchaitin.cpp971 IndexSet *adj = _ifg->remove_node( lo ); local
978 IndexSetIterator elements(adj);
1029 IndexSet *adj = _ifg->remove_node( lo ); local
1036 IndexSetIterator elements(adj);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dgtk2_interface.c2227 GtkAdjustment *adj; local
2231 adj = (*fp_gtk_range_get_adjustment)((GtkRange *)gtk2_widget);
2232 adj->value = (gdouble)value;
2233 adj->lower = (gdouble)min;
2234 adj->upper = (gdouble)max;
2235 adj->page_size = (gdouble)visible;

Completed in 93 milliseconds