Searched refs:opposite (Results 1 - 24 of 24) sorted by relevance

/openjdk10/jdk/src/java.desktop/share/classes/sun/awt/
H A DTimedWindowEvent.java40 public TimedWindowEvent(Window source, int id, Window opposite, long time) { argument
41 super(source, id, opposite);
45 public TimedWindowEvent(Window source, int id, Window opposite, argument
48 super(source, id, opposite, oldState, newState);
H A DCausedFocusEvent.java64 Component opposite, Cause cause) {
65 super(source, id, temporary, opposite);
63 CausedFocusEvent(Component source, int id, boolean temporary, Component opposite, Cause cause) argument
/openjdk10/jdk/test/java/net/Socket/
H A DTestTcpNoDelay.java41 boolean opposite = on ? false: true;
42 System.out.println("Set TCP_NODELAY to " + opposite);
43 socket.setTcpNoDelay(opposite);
48 if (noDelay != opposite)
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/event/
H A DFocusEvent.java176 * no other Component, then the opposite Component is null.
181 transient Component opposite; field in class:FocusEvent
190 * specified temporary state, opposite {@code Component} and the
192 * The opposite {@code Component} is the other
199 * or with no other {@code Component}, then the opposite
211 * @param opposite The other Component involved in the focus change,
222 Component opposite) {
223 this(source, id, temporary, opposite, Cause.UNKNOWN);
228 * specified temporary state, opposite {@code Component} and the cause.
229 * The opposite {
221 FocusEvent(Component source, int id, boolean temporary, Component opposite) argument
260 FocusEvent(Component source, int id, boolean temporary, Component opposite, Cause cause) argument
[all...]
H A DWindowEvent.java163 transient Window opposite; field in class:WindowEvent
189 * @param opposite The other window involved in the focus or activation
203 public WindowEvent(Window source, int id, Window opposite, argument
207 this.opposite = opposite;
214 * specified opposite {@code Window}. The opposite
225 * {@code Window}, then the opposite Window is {@code null}.
240 * because the opposite {@code Window} of other event types
242 * @param opposite Th
250 WindowEvent(Window source, int id, Window opposite) argument
[all...]
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/lwawt/
H A DPlatformEventNotifier.java41 void notifyActivation(boolean activation, LWWindowPeer opposite); argument
H A DLWLightweightFramePeer.java71 Window opposite = LWKeyboardFocusManagerPeer.getInstance().
74 changeFocusedWindow(true, opposite);
H A DLWWindowPeer.java733 public void notifyActivation(boolean activation, LWWindowPeer opposite) { argument
734 Window oppositeWindow = (opposite == null)? null : opposite.getTarget();
1223 Window opposite = LWKeyboardFocusManagerPeer.getInstance().
1240 // Ensure the opposite is natively active and suppress sending events.
1243 focusLog.fine("the opposite is " + currentActivePeer);
1253 changeFocusedWindow(true, opposite);
1260 changeFocusedWindow(true, opposite);
1311 protected void changeFocusedWindow(boolean becomesFocused, Window opposite) { argument
1336 // - when the opposite (gainin
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/
H A DInductionVariable.java39 public Direction opposite() { method in class:InductionVariable.Direction
H A DDerivedScaledInductionVariable.java69 return base.direction().opposite();
H A DBasicInductionVariable.java87 return dir.opposite();
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DKeyboardFocusManager.java2729 Component opposite = fe.getOppositeComponent();
2732 (opposite == null || isTemporary(opposite, source)))
2736 return new FocusEvent(source, fe.getID(), temporary, opposite,
2747 Component opposite = fe.getOppositeComponent();
2795 boolean temporary = (opposite == null ||
2796 isTemporary(newSource, opposite))
2810 // 'opposite' will be fixed by
2814 opposite, lwFocusRequest.cause);
2838 Component opposite
[all...]
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/lwawt/macosx/
H A DCPlatformResponder.java262 void handleWindowFocusEvent(boolean gained, LWWindowPeer opposite) { argument
263 eventNotifier.notifyActivation(gained, opposite);
H A DCWarningWindow.java167 public void notifyActivation(boolean activation, LWWindowPeer opposite) { argument
H A DCPlatformWindow.java1006 private void deliverWindowFocusEvent(boolean gained, CPlatformWindow opposite){ argument
1013 LWWindowPeer oppositePeer = (opposite == null)? null : opposite.getPeer();
/openjdk10/jdk/src/java.desktop/share/classes/sun/awt/im/
H A DInputContext.java232 Component opposite = ((FocusEvent)event).getOppositeComponent();
233 if ((opposite != null) &&
234 (getComponentWindow(opposite) instanceof InputMethodWindow) &&
235 (opposite.getInputContext() == this)) {
/openjdk10/jdk/src/java.desktop/windows/native/libawt/windows/
H A Dawt_Frame.h108 MsgRouting WmActivate(UINT nState, BOOL fMinimized, HWND opposite);
H A Dawt_Window.h150 void SendWindowEvent(jint id, HWND opposite = NULL,
167 virtual MsgRouting WmActivate(UINT nState, BOOL fMinimized, HWND opposite);
H A Dawt_Frame.cpp985 MsgRouting AwtFrame::WmActivate(UINT nState, BOOL fMinimized, HWND opposite) argument
991 CheckActivateActualFocusedWindow(opposite))
999 if (::IsWindow(AwtWindow::GetModalBlocker(opposite))) {
1008 if (m_grabbedWindow->GetHWnd() == opposite) {
1016 if (!m_grabbedWindow->IsOneOfOwnersOf((AwtWindow*)AwtComponent::GetComponent(opposite))) {
1021 CheckRetainActualFocusedWindow(opposite);
1029 SendWindowEvent(type, opposite);
1054 // Check that the opposite window is not this frame, nor an owned window of this frame
H A Dawt_Component.h406 void SendFocusEvent(jint id, HWND opposite);
497 virtual MsgRouting WmActivate(UINT nState, BOOL fMinimized, HWND opposite) argument
H A Dawt_Window.cpp1199 // The behavior is slightly opposite to the WinNT (and up), where
1519 void AwtWindow::SendWindowEvent(jint id, HWND opposite, argument
1574 if (opposite != NULL) {
1575 AwtComponent *awtOpposite = AwtComponent::GetComponent(opposite);
1654 MsgRouting AwtWindow::WmActivate(UINT nState, BOOL fMinimized, HWND opposite) argument
1666 owner->CheckRetainActualFocusedWindow(opposite);
1677 SendWindowEvent(type, opposite);
H A Dawt_Component.cpp5104 void AwtComponent::SendFocusEvent(jint id, HWND opposite) argument
5159 if (opposite != NULL) {
5160 AwtComponent *awtOpposite = AwtComponent::GetComponent(opposite);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicPopupMenuUI.java1060 Component opposite = ev.getOppositeComponent();
1061 if (opposite != null) {
1062 lastFocused = opposite;
/openjdk10/jdk/src/jdk.jconsole/share/classes/sun/tools/jconsole/
H A DConnectDialog.java520 Component opposite = e.getOppositeComponent();
524 opposite instanceof JComponent &&
525 SwingUtilities.getRootPane(opposite) == getRootPane()) {

Completed in 287 milliseconds