Searched refs:state (Results 76 - 100 of 716) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/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...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCCheckboxMenuItem.java39 private native void nativeSetState(long modelPtr, boolean state); argument
50 public void setState(boolean state) { argument
51 nativeSetState(getModel(), state);
54 public void handleAction(final boolean state) { argument
58 target.setState(state);
61 ItemEvent event = new ItemEvent(target, ItemEvent.ITEM_STATE_CHANGED, target.getLabel(), state ? ItemEvent.SELECTED : ItemEvent.DESELECTED);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DHTMLSerializer.java201 ElementState state;
214 state = getElementState();
227 if ( state.empty )
232 if ( _indenting && ! state.preserveSpace &&
233 ( state.empty || state.afterElement ) )
236 preserveSpace = state.preserveSpace;
238 // Do not change the current element state yet.
344 // Now it's time to enter a new element state
346 // We still do not change the curent element state
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DSHA5.java87 // state of this object
88 private final long[] state; field in class:SHA5
90 // initial state value. different between SHA-384 and SHA-512
99 state = new long[8];
105 * Creates a SHA object with state (for cloning)
110 this.state = base.state.clone();
115 System.arraycopy(initialHashes, 0, state, 0, state.length);
129 l2bBig(state,
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
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...]
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DGSSContext.java480 * Used during context establishment to determine the state of the
560 * application to set the desired QOP and privacy state. Set the
562 * method, this object will contain the the actual privacy state that
607 * application to set the desired QOP and privacy state. Set the
609 * method, this object will contain the the actual privacy state that
630 * and other supplementary message state information.<p>
641 * the applied QOP, the privacy state of the message, and supplementary
666 * and other supplementary message state information.<p>
690 * the applied QOP, the privacy state of the message, and supplementary
776 * the message and other supplementary message state informatio
927 requestMutualAuth(boolean state) argument
957 requestReplayDet(boolean state) argument
989 requestSequenceDet(boolean state) argument
1015 requestCredDeleg(boolean state) argument
1035 requestAnonymity(boolean state) argument
1065 requestConf(boolean state) argument
1089 requestInteg(boolean state) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleStateSet.java34 * Class AccessibleStateSet determines a component's state set. The state set
36 * current overall state of the object, such as whether it is enabled,
57 * Creates a new empty state set.
64 * Creates a new state with the initial set of states contained in
67 * @param states an array of AccessibleState describing the state set.
81 * Adds a new state to the current state set if it is not already
82 * present. If the state is already in the state se
90 add(AccessibleState state) argument
134 remove(AccessibleState state) argument
156 contains(AccessibleState state) argument
[all...]
/openjdk7/jdk/test/java/awt/event/KeyEvent/DeadKey/
H A DDeadKeyMacOSX.java41 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) {
H A DDeadKeyMacOSXInputText.java41 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++;
/openjdk7/jdk/src/solaris/classes/sun/nio/cs/ext/
H A DCOMPOUND_TEXT_Decoder.java65 private static final String ERR_ILLSTATE = "Illegal state";
82 private int state = NORMAL_BYTES ; field in class:COMPOUND_TEXT_Decoder
98 // Initial state in ISO 2022 designates Latin-1 charset.
131 switch (state) {
197 state = ESCAPE_SEQUENCE;
201 state = CONTROL_SEQUENCE_PIF;
288 state = NORMAL_BYTES;
298 state = VERSION_SEQUENCE_V;
301 state = CHARSET_NGIIF;
305 state
[all...]
/openjdk7/corba/src/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...]
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DSetOfIntegerSyntax.java117 // Run state machine over members.
120 int state = 0;
127 switch (state) {
131 state = 0;
135 state = 1;
143 state = 2;
146 state = 1;
148 state = 3;
151 state = 6;
159 state
[all...]
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinffast.c66 state->mode == LEN
70 state->bits < 8
72 On return, state->mode is one of:
95 struct inflate_state FAR *state; local
121 /* copy state to local variables */
122 state = (struct inflate_state FAR *)strm->state;
129 dmax = state->dmax;
131 wsize = state->wsize;
132 whave = state
[all...]
/openjdk7/corba/src/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...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Mac.java66 /* transitional state after doFinal() before we go to S_UNINIT */
90 // state, one of S_* above
91 private int state; field in class:P11Mac
131 state = S_UNINIT;
137 if (state == S_UNINIT) {
144 if (state == S_UNINIT) {
147 state = S_UNINIT;
159 if (state == S_RESET) {
168 state = S_RESET;
170 state
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/fsm/
H A DFSMImpl.java38 * This is the main class that represents an instance of a state machine
39 * using a state engine. It may be used as a base class, in which case
47 private State state ; field in class:FSMImpl
51 * in a particular start state.
60 state = startState ;
65 /** Return the current state.
69 return state ;
72 /** Perform the transition for the given input in the current state. This proceeds as follows:
73 * <p>Let S be the current state of the FSM.
80 * <li>Otherwise there is no enabled action. If S has a default action and next state, us
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DCheckbox.java38 * "on" (<code>true</code>) or "off" (<code>false</code>) state.
39 * Clicking on a check box changes its state from
58 * The button labeled <code>one</code> is in the "on" state, and the
59 * other two are in the "off" state. In this example, which uses the
67 * state at any given time. Clicking on a check box to turn it on
69 * into the "off" state.
96 * The state of the <code>Checkbox</code>.
101 boolean state; field in class:Checkbox
127 void setStateInternal(boolean state) { argument
128 this.state
176 Checkbox(String label, boolean state) argument
195 Checkbox(String label, boolean state, CheckboxGroup group) argument
221 Checkbox(String label, CheckboxGroup group, boolean state) argument
318 setState(boolean state) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DCK_SESSION_INFO.java58 * CK_STATE state;&nbsp;&nbsp;
80 * CK_STATE state;
83 public long state; field in class:CK_SESSION_INFO
103 public CK_SESSION_INFO(long slotID, long state, argument
106 this.state = state;
125 buffer.append("state: ");
126 buffer.append(Functions.sessionStateToString(state));
/openjdk7/jdk/src/share/classes/javax/print/
H A DMimeType.java348 int state = 0;
351 while (state >= 0) {
352 switch (state) {
359 state = -1;
362 state = 0;
366 state = 1;
369 state = 3;
378 state = -1;
382 state = 5;
391 state
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dswing_GTKEngine.c38 jint widget_type, jint state, jint shadow_type, jstring detail,
42 gtk2_paint_arrow(widget_type, state, shadow_type, getStrFor(env, detail),
55 jint widget_type, jint state, jint shadow_type, jstring detail,
60 gtk2_paint_box(widget_type, state, shadow_type, getStrFor(env, detail),
73 jint widget_type, jint state, jint shadow_type, jstring detail,
78 gtk2_paint_box_gap(widget_type, state, shadow_type, getStrFor(env, detail),
108 jint widget_type, jint state, jstring detail,
112 gtk2_paint_expander(widget_type, state, getStrFor(env, detail),
125 jint widget_type, jint state, jint shadow_type, jstring detail,
129 gtk2_paint_extension(widget_type, state, shadow_typ
36 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1arrow( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint arrow_type) argument
53 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1box( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint synth_state, jint dir) argument
71 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1box_1gap( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint gap_side, jint gap_x, jint gap_w) argument
106 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1expander( JNIEnv *env, jobject this, jint widget_type, jint state, jstring detail, jint x, jint y, jint w, jint h, jint expander_style) argument
123 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1extension( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint placement) argument
140 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1flat_1box( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jboolean has_focus) argument
157 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1focus( JNIEnv *env, jobject this, jint widget_type, jint state, jstring detail, jint x, jint y, jint w, jint h) argument
174 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1handle( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint orientation) argument
191 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1hline( JNIEnv *env, jobject this, jint widget_type, jint state, jstring detail, jint x, jint y, jint w, jint h) argument
225 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1shadow( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint synth_state, jint dir) argument
243 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1slider( JNIEnv *env, jobject this, jint widget_type, jint state, jint shadow_type, jstring detail, jint x, jint y, jint w, jint h, jint orientation) argument
260 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1vline( JNIEnv *env, jobject this, jint widget_type, jint state, jstring detail, jint x, jint y, jint w, jint h) argument
277 Java_com_sun_java_swing_plaf_gtk_GTKEngine_native_1paint_1background( JNIEnv *env, jobject this, jint widget_type, jint state, jint x, jint y, jint w, jint h) argument
[all...]
/openjdk7/jdk/test/sun/jvmstat/monitor/HostIdentifier/
H A DHostIdentifierCreate.java60 private int state; field in class:HostIdentifierTestHandler
99 + " state = " + state);
102 switch (state) {
104 throw new RuntimeException("Unexpected state: " + state);
107 state = START;
112 throw new RuntimeException("Unexpected thread state");
121 state = HOSTIDENTIFIER_TESTS;
128 state
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSCMValidator.java51 * has this content model. It will return the initial state of the content model
53 * @return Start state of the content model
62 * @param state Current state
66 public Object oneTransition (QName elementName, int[] state, SubstitutionGroupHandler subGroupHandler); argument
72 * @param state Current state of the content model
73 * @return true if the last state was a valid final state
75 public boolean endContentModel (int[] state); argument
94 whatCanGoHere(int[] state) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaListUI.java126 // Replace the mouse event with one that returns the cmd-key state when asked
127 // for the control-key state, which super assumes is what everyone does to discontiguously extend selections
163 border.painter.state.set(Widget.GRADIENT);
164 border.painter.state.set(Variant.GRADIENT_SIDE_BAR);
170 border.painter.state.set(Widget.GRADIENT);
171 border.painter.state.set(Variant.GRADIENT_SIDE_BAR_SELECTION);
177 border.painter.state.set(Widget.GRADIENT);
178 border.painter.state.set(Variant.GRADIENT_SIDE_BAR_FOCUSED_SELECTION);
184 border.painter.state.set(Widget.GRADIENT);
185 border.painter.state
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkStateScanner.hpp51 void scan(SharkState* state);
81 void stack_integrity_checks(SharkState* state) PRODUCT_RETURN;
82 void locals_integrity_checks(SharkState* state) PRODUCT_RETURN;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DLeafPropertyLoader.java48 public void text(UnmarshallingContext.State state, CharSequence text) throws SAXException { argument
50 xacc.parse(state.prev.target,text);
54 handleParseConversionException(state,e);

Completed in 94 milliseconds

1234567891011>>