Searched refs:temporary (Results 1 - 25 of 34) sorted by relevance

12

/openjdk10/jdk/src/java.desktop/share/classes/java/awt/event/
H A DFocusEvent.java45 * There are two levels of focus events: permanent and temporary. Permanent
53 * reactivated. Both permanent and temporary focus events are delivered using
161 * A focus event can have two different levels, permanent and temporary.
169 boolean temporary; field in class:FocusEvent
190 * specified temporary state, opposite {@code Component} and the
209 * @param temporary Equals {@code true} if the focus change is temporary;
221 public FocusEvent(Component source, int id, boolean temporary, argument
223 this(source, id, temporary, opposite, Cause.UNKNOWN);
228 * specified temporary stat
260 FocusEvent(Component source, int id, boolean temporary, Component opposite, Cause cause) argument
289 FocusEvent(Component source, int id, boolean temporary) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DSSLSocketInputRecord.java45 private byte[] temporary = new byte[1024]; field in class:SSLSocketInputRecord
65 int really = read(is, temporary, 0, headerSize);
72 byte byteZero = temporary[0];
87 ProtocolVersion.valueOf(temporary[1], temporary[2]);
102 len = ((temporary[3] & 0xFF) << 8) +
103 (temporary[4] & 0xFF) + headerSize;
114 if (isShort && ((temporary[2] == 1) || (temporary[2] == 4))) {
116 ProtocolVersion.valueOf(temporary[
[all...]
H A DDTLSOutputRecord.java200 ByteBuffer temporary = destination.duplicate();
201 temporary.limit(temporary.position());
202 temporary.position(dstPos);
204 "[Raw write]: length = " + temporary.remaining(),
205 temporary);
249 ByteBuffer temporary = destination.duplicate();
250 temporary.limit(temporary.position());
251 temporary
[all...]
H A DSSLEngineOutputRecord.java225 ByteBuffer temporary = destination.duplicate();
226 temporary.limit(temporary.position());
227 temporary.position(dstPos);
229 "[Raw write]: length = " + temporary.remaining(),
230 temporary);
322 ByteBuffer temporary = destination.duplicate();
323 temporary.limit(temporary.position());
324 temporary
[all...]
H A DDTLSInputRecord.java1574 byte[] temporary = new byte[12]; // 12: handshake header size
1577 temporary[0] = hsFrag.handshakeType;
1580 temporary[1] = (byte)((hsFrag.messageLength >> 16) & 0xFF);
1581 temporary[2] = (byte)((hsFrag.messageLength >> 8) & 0xFF);
1582 temporary[3] = (byte)(hsFrag.messageLength & 0xFF);
1585 temporary[4] = (byte)((hsFrag.messageSeq >> 8) & 0xFF);
1586 temporary[5] = (byte)(hsFrag.messageSeq & 0xFF);
1589 temporary[6] = 0;
1590 temporary[7] = 0;
1591 temporary[
[all...]
H A DInputRecord.java463 ByteBuffer temporary = ByteBuffer.allocate(remainingLen);
469 checkMacTags(contentType, temporary, signer, sequence, true);
/openjdk10/jdk/src/java.desktop/share/classes/sun/awt/
H A DRequestFocusController.java33 boolean temporary, boolean focusedWindowChangeAllowed,
32 acceptRequestFocus(Component from, Component to, boolean temporary, boolean focusedWindowChangeAllowed, Cause cause) argument
H A DKeyboardFocusManagerPeerImpl.java110 boolean temporary,
152 boolean temporary,
158 heavyweight, descendant, temporary, focusedWindowChangeAllowed,
169 boolean temporary,
174 heavyweight, descendant, temporary, focusedWindowChangeAllowed,
108 deliverFocus(Component lightweightChild, Component target, boolean temporary, boolean focusedWindowChangeAllowed, long time, FocusEvent.Cause cause, Component currentFocusOwner) argument
150 shouldNativelyFocusHeavyweight(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time, FocusEvent.Cause cause) argument
167 processSynchronousLightweightTransfer(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time) argument
H A DCausedFocusEvent.java63 private CausedFocusEvent(Component source, int id, boolean temporary, argument
65 super(source, id, temporary, opposite);
H A DNullComponentPeer.java181 (Component lightweightChild, boolean temporary,
180 requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, Cause cause) argument
/openjdk10/jdk/src/java.desktop/windows/classes/sun/awt/windows/
H A DWKeyboardFocusManagerPeer.java75 boolean temporary,
83 temporary,
73 deliverFocus(Component lightweightChild, Component target, boolean temporary, boolean focusedWindowChangeAllowed, long time, Cause cause) argument
H A DWPrintDialogPeer.java150 public boolean requestFocus(boolean temporary, boolean focusedWindowChangeAllowed) { argument
156 (Component lightweightChild, boolean temporary,
155 requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, Cause cause) argument
H A DWFileDialogPeer.java278 public boolean requestFocus(boolean temporary, argument
285 (Component lightweightChild, boolean temporary,
284 requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, Cause cause) argument
/openjdk10/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXKeyboardFocusManagerPeer.java101 boolean temporary,
108 temporary,
99 deliverFocus(Component lightweightChild, Component target, boolean temporary, boolean focusedWindowChangeAllowed, long time, FocusEvent.Cause cause) argument
H A DXEmbedChildProxyPeer.java169 boolean simulateMotifRequestFocus(Component lightweightChild, boolean temporary, argument
195 boolean temporary,
202 temporary, false, time, cause);
240 return simulateMotifRequestFocus(lightweightChild, temporary, focusedWindowChangeAllowed, time);
194 requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, FocusEvent.Cause cause) argument
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DKeyboardFocusManager.java121 boolean temporary,
127 heavyweight, descendant, temporary, focusedWindowChangeAllowed, time, cause);
131 boolean temporary,
136 heavyweight, descendant, temporary, focusedWindowChangeAllowed, time);
289 * outstanding temporary focus transfer has completed, or the focus owner,
290 * if no outstanding temporary transfer exists.
677 * equivalent unless a temporary focus change is currently in effect. In
679 * owner when the temporary focus change ends.
704 * are equivalent unless a temporary focus change is currently in effect.
706 * owner when the temporary focu
2173 final boolean temporary; field in class:KeyboardFocusManager.LightweightFocusRequest
2176 LightweightFocusRequest(Component component, boolean temporary, FocusEvent.Cause cause) argument
2199 HeavyweightFocusRequest(Component heavyweight, Component descendant, boolean temporary, FocusEvent.Cause cause) argument
2211 addLightweightRequest(Component descendant, boolean temporary, FocusEvent.Cause cause) argument
2283 processSynchronousLightweightTransfer(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time) argument
2387 shouldNativelyFocusHeavyweight(Component heavyweight, Component descendant, boolean temporary, boolean focusedWindowChangeAllowed, long time, FocusEvent.Cause cause) argument
[all...]
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DBytecodeViewTopComponent.java160 public boolean requestFocus(boolean temporary) { argument
162 return super.requestFocus(temporary);
166 protected boolean requestFocusInWindow(boolean temporary) { argument
168 return super.requestFocusInWindow(temporary);
/openjdk10/jdk/test/java/awt/Focus/RequestFocusByCause/
H A DRequestFocusByCauseTest.java84 protected boolean requestFocus(boolean temporary,
87 return super.requestFocus(temporary, cause);
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/
H A DOutlineTopComponent.java194 public boolean requestFocus(boolean temporary) { argument
196 return super.requestFocus(temporary);
200 protected boolean requestFocusInWindow(boolean temporary) { argument
202 return super.requestFocusInWindow(temporary);
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/lwawt/macosx/
H A DCPrinterDialogPeer.java76 public boolean requestFocus(boolean temporary, boolean focusedWindowChangeAllowed) { argument
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/logger/
H A DLazyLoggers.java103 * temporary loggers if appropriate.
163 // SPI or use a temporary (BootstrapLogger or SimpleConsoleLogger)
181 // will redirect to the new wrapper properly, or the temporary
195 // SPI or use a temporary (BootstrapLogger or SimpleConsoleLogger)
207 * Makes this accessor release a temporary logger.
210 * is initialized, in order to replace temporary SimpleConsoleLoggers by
216 * @param temporary The temporary logger too be released.
220 void release(SimpleConsoleLogger temporary, boolean replace) { argument
222 PlatformLogger.ConfigurableBridge.getLoggerConfiguration(temporary);
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/peer/
H A DComponentPeer.java334 * @param temporary {@code true} if the focus change is temporary,
344 boolean requestFocus(Component lightweightChild, boolean temporary, argument
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DFilterTopComponent.java576 public boolean requestFocus(boolean temporary) { argument
578 return super.requestFocus(temporary);
582 protected boolean requestFocusInWindow(boolean temporary) { argument
584 return super.requestFocusInWindow(temporary);
/openjdk10/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DDistributionPointFetcher.java651 TrustAnchor temporary;
653 temporary = new TrustAnchor(prevCert, null);
656 temporary = new TrustAnchor(principal, prevKey, null);
658 newTrustAnchors.add(temporary);
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/lwawt/
H A DLWComponentPeer.java904 public boolean requestFocus(Component lightweightChild, boolean temporary, argument
909 focusLog.finest("lightweightChild=" + lightweightChild + ", temporary=" + temporary +
914 getTarget(), lightweightChild, temporary,
920 getTarget(), lightweightChild, temporary,
975 getTarget(), temporary,

Completed in 281 milliseconds

12