Searched defs:above (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWContainerPeer.java77 void setChildPeerZOrder(LWComponentPeer peer, LWComponentPeer above) { argument
80 int index = (above != null) ? childPeers.indexOf(above) : childPeers.size();
144 * Removes bounds of children above specific child from the region. If above
147 protected final Region cutChildren(Region r, final LWComponentPeer above) { argument
148 boolean aboveFound = above == null;
150 if (!aboveFound && child == above) {
H A DLWComponentPeer.java784 public void setZOrder(ComponentPeer above) { argument
789 cp.setChildPeerZOrder(this, (LWComponentPeer) above);
H A DLWWindowPeer.java444 public void setZOrder(ComponentPeer above) { argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWarningWindow.java327 protected void setMouseAbove(boolean above) { argument
328 super.setMouseAbove(above);
H A DXEmbedChildProxyPeer.java387 public void setZOrder(ComponentPeer above) { argument
H A DXComponentPeer.java1331 * Lowers this component at the bottom of the above HW peer. If the above parameter
1334 public void setZOrder(ComponentPeer above) { argument
1335 long aboveWindow = (above != null) ? ((XComponentPeer)above).getWindow() : 0;
H A DXWindow.java670 * Ignore the buttons above 20 due to the bit limit for
866 protected void setMouseAbove(boolean above) { argument
868 mouseAboveMe = above;
H A DXWindowPeer.java1111 protected void setMouseAbove(boolean above) { argument
1112 super.setMouseAbove(above);
1636 * the next one. That allows us to keep the modal dialog above all its
2107 // see comment above for more inforamtion.
2123 * Ignore the buttons above 20 due to the bit limit for
H A DXlibWrapper.java564 static native void SetZOrder(long display, long window, long above); argument
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DComponentPeer.java543 * Lowers this component at the bottom of the above HW peer. If the above parameter
546 void setZOrder(ComponentPeer above); argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrintDialogPeer.java151 public void setZOrder(ComponentPeer above) {} argument
H A DWFileDialogPeer.java274 public void setZOrder(ComponentPeer above) {} argument
H A DWComponentPeer.java1097 * Lowers this component at the bottom of the above component. If the above parameter
1100 public void setZOrder(ComponentPeer above) { argument
1101 long aboveHWND = (above != null) ? ((WComponentPeer)above).getHWnd() : 0;
1106 private native void setZOrder(long above); argument
/openjdk7/jdk/src/share/classes/sun/awt/
H A DNullComponentPeer.java297 * Lowers this component at the bottom of the above HW peer. If the above parameter
300 public void setZOrder(ComponentPeer above) { argument
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Font.c641 int32_t above = 0; /* tries above height */ local
698 /* alternate by searching for heights above and below our */
699 /* preferred height. We try for 4 heights above and below. */
703 if (above == below) {
704 above++;
705 height = oheight + above;
715 above = below = 0;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCFileDialog.java406 public void setZOrder(ComponentPeer above) { argument
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.hpp467 above = 0x7, enumerator in enum:Assembler::Condition
2046 void store_check(Register obj, Address dst); // same as above, dst is exact store location (reg. is destroyed)
2170 // Variant of the above which allows y to be further down the stack
2180 // Variant of the above which allows y to be further down the stack
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c2195 (JNIEnv *env, jclass clazz, jlong display, jlong window, jlong above)
2200 wc.sibling = (Window)jlong_to_ptr(above);
2204 if (above == 0) {
2194 Java_sun_awt_X11_XlibWrapper_SetZOrder(JNIEnv *env, jclass clazz, jlong display, jlong window, jlong above) argument
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp147 jlong above; member in struct:SetZOrderStruct
979 * If window has dimensions above the short int limit, ::SetWindowPos doesn't work.
2587 // Note: the above should not fail on NT (or 2000)
2864 // Auxiliary tables used to fill the above dynamic table. We first
4624 // above.
5313 /* Cleanup above linking */
6194 HWND above = HWND_TOP; local
6195 if (data->above != 0) {
6196 above = reinterpret_cast<HWND>(data->above);
6928 Java_sun_awt_windows_WComponentPeer_setZOrder(JNIEnv* env, jobject self, jlong above) argument
[all...]

Completed in 120 milliseconds