Searched refs:state (Results 101 - 125 of 1004) sorted by relevance

1234567891011>>

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/
H A DDeoptimizingNode.java44 * Sets the {@link FrameState} describing the program state before the execution of this
47 void setStateBefore(FrameState state); argument
68 * Sets the {@link FrameState} describing the program state during the execution of this
71 void setStateDuring(FrameState state); argument
74 * Compute the {@link FrameState} describing the program state during the execution of this
75 * node from an input {@link FrameState} describing the program state after finishing the
/openjdk9/hotspot/src/share/vm/compiler/
H A DabstractCompiler.cpp60 void AbstractCompiler::set_state(int state) { argument
61 // Ensure that state is only set by one thread at a time
63 _compiler_state = state;
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DXSGrammarPoolContainer.java61 public void setFeature(String featureId, boolean state); argument
73 public void setProperty(String propertyId, Object state); argument
/openjdk9/jdk/src/java.base/share/classes/sun/net/
H A DProgressSource.java51 private State state; field in class:ProgressSource
76 this.state = State.NEW;
84 state = State.CONNECTED;
94 state = State.DELETE;
138 * Return state.
141 return state;
167 state = State.CONNECTED;
169 state = State.UPDATE;
207 return getClass().getName() + "[url=" + url + ", method=" + method + ", state=" + state
[all...]
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DBlockingPushPublisher.java40 volatile SubscriptionState state; field in class:BlockingPushPublisher
45 state = SubscriptionState.OPENED;
56 SubscriptionState s = this.state;
58 // do not use switch(this.state): this.state could be null.
66 this.state = SubscriptionState.DONE;
69 if (this.state == SubscriptionState.CANCELLED) return;
79 if (this.state != SubscriptionState.OPENED) {
91 if (this.state == SubscriptionState.DONE) {
106 this.state
[all...]
H A DPushPublisher.java38 SubscriptionState state; field in class:PushPublisher
47 SubscriptionState s = this.state;
56 this.state = SubscriptionState.DONE;
90 state = SubscriptionState.CANCELLED;
96 if (this.state == SubscriptionState.DONE) {
99 this.state = SubscriptionState.CANCELLED;
/openjdk9/jdk/src/java.security.jgss/share/classes/sun/security/jgss/spi/
H A DGSSContextSpi.java46 * The context options can only be requested in state 1. In state 3,
49 * while in state 1 and 2, and the established values in state 3.
100 public void requestMutualAuth(boolean state) throws GSSException; argument
102 public void requestReplayDet(boolean state) throws GSSException; argument
104 public void requestSequenceDet(boolean state) throws GSSException; argument
106 public void requestCredDeleg(boolean state) throws GSSException; argument
108 public void requestAnonymity(boolean state) throws GSSException; argument
110 public void requestConf(boolean state) throw argument
112 requestInteg(boolean state) argument
114 requestDelegPolicy(boolean state) argument
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/
H A DRawHtml.java105 State state = State.TEXT;
109 switch (state) {
113 state = State.TAG;
116 state = State.ENTITY;
126 state = State.TEXT;
132 state = State.STRING;
135 state = State.TEXT;
143 state = State.TAG;
/openjdk9/jdk/src/java.desktop/macosx/classes/sun/lwawt/macosx/
H A DCCheckboxMenuItem.java38 private native void nativeSetState(long modelPtr, boolean state); argument
49 public void setState(final boolean state) { argument
50 execute(ptr -> nativeSetState(ptr, state));
53 public void handleAction(final boolean state) { argument
57 target.setState(state);
60 ItemEvent event = new ItemEvent(target, ItemEvent.ITEM_STATE_CHANGED, target.getLabel(), state ? ItemEvent.SELECTED : ItemEvent.DESELECTED);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/transport/http/server/
H A DServerMgr.java75 ServerState state;
84 state = servers.get(inetAddress);
85 if (state == null) {
94 state = free;
117 state = new ServerState(server, path);
118 servers.put(inetAddress, state);
123 server = state.getServer();
125 if (state.getPaths().contains(url.getPath())) {
137 state.oneMoreContext(url.getPath());
151 ServerState state
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serialize/
H A DHTMLSerializer.java200 ElementState state;
213 state = getElementState();
226 if ( state.empty )
231 if ( _indenting && ! state.preserveSpace &&
232 ( state.empty || state.afterElement ) )
235 preserveSpace = state.preserveSpace;
237 // Do not change the current element state yet.
340 // Now it's time to enter a new element state
342 // We still do not change the curent element state
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/
H A DSHA2.java72 // state of this object
73 private int[] state; field in class:SHA2
75 // initial state value. different between SHA-224 and SHA-256
84 state = new int[8];
93 System.arraycopy(initialHashes, 0, state, 0, state.length);
107 i2bBig(state, 0, out, ofs, engineGetDigestLength());
189 * Process the current block to update the state variable state.
220 int a = state[
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.aarch64/src/org/graalvm/compiler/hotspot/aarch64/
H A DAArch64HotSpotSafepointOp.java49 @State protected LIRFrameState state; field in class:AArch64HotSpotSafepointOp
54 public AArch64HotSpotSafepointOp(LIRFrameState state, GraalHotSpotVMConfig config, AllocatableValue scratch) { argument
56 this.state = state;
64 emitCode(crb, masm, config, false, scratch, state);
79 public static void emitCode(CompilationResultBuilder crb, AArch64MacroAssembler masm, GraalHotSpotVMConfig config, boolean onReturn, Register scratch, LIRFrameState state) { argument
84 if (state != null) {
85 crb.recordInfopoint(pos, state, InfopointReason.SAFEPOINT);
90 if (state != null) {
91 crb.recordInfopoint(pos, state, InfopointReaso
[all...]
/openjdk9/jdk/src/java.desktop/share/native/libjavajpeg/
H A Djchuff.c16 * back up to the start of the current MCU. To do this, we copy state
62 savable_state saved; /* Bit buffer & DC state at start of MCU */
64 /* These fields are NOT loaded into local working state. */
80 /* Working state while writing an MCU.
87 savable_state cur; /* Current bit buffer & DC state */
274 #define emit_byte(state,val,action) \
275 { *(state)->next_output_byte++ = (JOCTET) (val); \
276 if (--(state)->free_in_buffer == 0) \
277 if (! dump_buffer(state)) \
282 dump_buffer (working_state * state)
483 working_state state; local
540 working_state state; local
[all...]
/openjdk9/jdk/src/java.base/share/native/libzip/zlib/
H A Dinffast.c49 state->mode == LEN
53 state->bits < 8
55 On return, state->mode is one of:
78 struct inflate_state FAR *state; local
104 /* copy state to local variables */
105 state = (struct inflate_state FAR *)strm->state;
112 dmax = state->dmax;
114 wsize = state->wsize;
115 whave = state
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/accessibility/
H A DAccessibleStateSet.java31 * Class {@code AccessibleStateSet} determines a component's state set. The
32 * state set of a component is a set of {@code AccessibleState} objects and
33 * descriptions. E.G., The current overall state of the object, such as whether
54 * Creates a new empty state set.
61 * Creates a new state with the initial set of states contained in the array
64 * @param states an array of {@code AccessibleState} describing the state
79 * Adds a new state to the current state set if it is not already present.
80 * If the state is already in the state se
88 add(AccessibleState state) argument
133 remove(AccessibleState state) argument
157 contains(AccessibleState state) argument
[all...]
/openjdk9/jdk/src/java.security.jgss/share/classes/org/ietf/jgss/
H A DGSSContext.java479 * Used during context establishment to determine the state of the
559 * application to set the desired QOP and privacy state. Set the
561 * method, this object will contain the actual privacy state that
606 * application to set the desired QOP and privacy state. Set the
608 * method, this object will contain the actual privacy state that
629 * and other supplementary message state information.<p>
640 * the applied QOP, the privacy state of the message, and supplementary
665 * and other supplementary message state information.<p>
689 * the applied QOP, the privacy state of the message, and supplementary
775 * the message and other supplementary message state informatio
926 requestMutualAuth(boolean state) argument
956 requestReplayDet(boolean state) argument
988 requestSequenceDet(boolean state) argument
1014 requestCredDeleg(boolean state) argument
1034 requestAnonymity(boolean state) argument
1064 requestConf(boolean state) argument
1088 requestInteg(boolean state) argument
[all...]
/openjdk9/jdk/test/java/awt/event/KeyEvent/DeadKey/
H A DDeadKeyMacOSXInputText.java42 private static volatile int state = 0; field in class:DeadKeyMacOSXInputText
66 if (state != 3) {
94 switch (state) {
99 state++;
108 state++;
118 if (state == 2) {
125 state++;
H A DdeadKeyMacOSX.java42 private static volatile int state = 0; field in class:deadKeyMacOSX
65 if (state != 3) {
90 switch (state) {
95 state++;
105 state++;
114 state++;
126 if (state == 3) {
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/parser/
H A DScanner.java86 * @param state state, the state is a tuple {position, limit, line} only visible internally
88 Scanner(final Scanner scanner, final State state) { argument
90 position = state.position;
91 limit = state.limit;
92 line = state.line;
98 * Information needed to restore previous state.
130 * Save the state of the scan.
131 * @return Captured state
141 restoreState(final State state) argument
[all...]
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeJSON.java140 final StringifyState state = new StringifyState();
144 state.replacerFunction = replacer;
150 state.propertyList = new ArrayList<>();
169 state.propertyList.add(item);
205 state.gap = gap;
210 return str("", wrapper, state);
227 private static Object str(final Object key, final Object holder, final StringifyState state) { argument
247 if (state.replacerFunction != null) {
248 value = getREPLACER_INVOKER().invokeExact(state.replacerFunction, holder, key, value);
287 return JA(value, state);
297 JO(final Object value, final StringifyState state) argument
376 JA(final Object value, final StringifyState state) argument
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAManagerImpl.java60 private final POAFactory factory ; // factory which contains global state
63 private State state; // current state of this POAManager field in class:POAManagerImpl
74 private String stateToString( State state )
76 switch (state.value()) {
89 " state=" + stateToString(state) +
148 state = State.HOLDING;
160 if (state.value() == State._INACTIVE) {
178 switch (state
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/print/attribute/
H A DSetOfIntegerSyntax.java115 // Run state machine over members.
118 int state = 0;
125 switch (state) {
129 state = 0;
133 state = 1;
141 state = 2;
144 state = 1;
146 state = 3;
149 state = 6;
157 state
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/deopt/
H A DMonitorDeoptTest.java56 private volatile State state = State.INITIAL; field in class:MonitorDeoptTest.Monitor
59 state = newState;
64 if (state == oldState) {
65 state = newState;
75 while (state != targetState && System.currentTimeMillis() - startTime < TIMEOUT) {
78 if (state != targetState) {
84 * Change the current state to {@link State#ALLOWING_SAFEPOINT} and do a short wait to allow
85 * a safepoint to happen. Then restore the state to the original value.
91 if (state == expectedState) {
92 state
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/som/idlemit/
H A DMetaPragma.java152 * This is implemented as a state machine as follows:
182 int state = initialState;
185 while ( state != finalState ){
217 if (state == initialState){
219 state = commentState;
222 state = finalState;
225 state = textState;
229 else if (state == commentState){
231 state = finalState;
234 state
[all...]

Completed in 189 milliseconds

1234567891011>>