Searched refs:state (Results 126 - 150 of 716) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DFramePeer.java73 * Changes the state of the frame.
75 * @param state the new state
79 void setState(int state); argument
82 * Returns the current state of the frame.
84 * @return the current state of the frame
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DCommunicatorServerMBean.java46 * A <CODE>CommunicatorServer</CODE> has a <CODE>state</CODE> property which reflects its
57 * The <CODE>STARTING</CODE> state marks the transition from <CODE>OFFLINE</CODE> to
60 * The <CODE>STOPPING</CODE> state marks the transition from <CODE>ONLINE</CODE> to
102 * Waits untill either the State attribute of this MBean equals the specified <VAR>state</VAR> parameter,
104 * the specified <VAR>state</VAR> parameter equals the value of this MBean's State attribute at the time the method terminates.
109 * is the same as the <VAR>state</VAR> parameter (i.e. will wait indefinitely if this condition is never met).</LI></UL>
111 * @param state The value of this MBean's State attribute
112 * to wait for. <VAR>state</VAR> can be one of:
124 * same as the <VAR>state</VAR> parameter; false otherwise.
126 public boolean waitState(int state , lon
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiThreadState.hpp60 JvmtiThreadState* state; member in class:JvmtiEnvThreadStateIterator
73 // The Jvmti state for each thread (across all JvmtiEnv):
99 // doubly-linked linear list of active thread state
129 // Must only be called in situations where the state is for the current thread and
279 JvmtiThreadState *state = thread->jvmti_thread_state(); local
280 if (state != NULL && state->_the_class_for_redefinition_verification != NULL) {
281 if ((*(state->_the_class_for_redefinition_verification))() == klass) {
282 klass = (*(state->_scratch_class_for_redefinition_verification))();
332 JvmtiThreadState *state local
347 JvmtiThreadState *state = thread->jvmti_thread_state(); local
405 RedefineVerifyMark(KlassHandle *the_class, KlassHandle *scratch_class, JvmtiThreadState *state) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJBreak.java46 public void state(JFormatter f) { method in class:JBreak
H A DJContinue.java46 public void state(JFormatter f) { method in class:JContinue
H A DJReturn.java49 public void state(JFormatter f) { method in class:JReturn
H A DJThrow.java50 public void state(JFormatter f) { method in class:JThrow
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DIntercepter.java42 * @param state
43 * points to the parent's current state.
47 Object intercept(UnmarshallingContext.State state, Object o) throws SAXException; argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWCheckboxPeer.java35 public native void setState(boolean state); argument
88 void handleAction(final boolean state) { argument
96 cb.setState(state);
99 state? ItemEvent.SELECTED : ItemEvent.DESELECTED));
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DUtils.java35 // wait for the thread to transition to the expected state
45 // wait for the thread to transition to the expected state
57 Thread.State state = tm.getThreadInfo(t.getId()).getThreadState();
58 if (state == null) {
62 if (state != expected) {
65 " expected to have " + expected + " but got " + state);
/openjdk7/jdk/test/javax/management/remote/mandatory/passwordAuthenticator/
H A DSimpleStandard.java81 return state;
91 state = s;
121 state = "initial state";
175 private String state = "initial state"; field in class:SimpleStandard
/openjdk7/jdk/test/javax/management/remote/mandatory/subjectDelegation/
H A DSimpleStandard.java79 return state;
89 state = s;
119 state = "initial state";
173 private String state = "initial state"; field in class:SimpleStandard
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DStateTrackableDelegate.java35 * transitions in the state of the object.
45 * {@link State#UNTRACKABLE UNTRACKABLE} state.
53 * {@link State#IMMUTABLE IMMUTABLE} state.
68 public static StateTrackableDelegate createInstance(State state) { argument
69 switch (state) {
79 throw new InternalError("unknown state");
91 private StateTrackableDelegate(State state) { argument
92 this.theState = state;
123 // just temporary while we are in the DYNAMIC state.
138 * @throws IllegalStateException if the current state i
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkState.hpp44 SharkState(const SharkState* state) argument
45 : SharkTargetInvariants(state),
46 _method(state->_method),
47 _oop_tmp(state->_oop_tmp),
48 _has_safepointed(state->_has_safepointed) { initialize(state); }
51 void initialize(const SharkState* state);
164 // SharkNormalEntryState objects are used to create the state
172 // SharkOSREntryState objects are used to create the state
181 // SharkPHIState objects are used to manage the entry state
[all...]
/openjdk7/jdk/src/share/native/sun/misc/
H A DVM.c42 static void get_thread_state_info(JNIEnv *env, jint state, argument
49 values = (*GetThreadStateValues_fp)(env, state);
51 sprintf(errmsg, "Mismatched VM version: Thread state (%d) "
52 "not supported", state);
56 /* state is also used as the index in the array */
57 (*env)->SetObjectArrayElement(env, stateValues, state, values);
59 names = (*GetThreadStateNames_fp)(env, state, values);
61 sprintf(errmsg, "Mismatched VM version: Thread state (%d) "
62 "not supported", state);
66 (*env)->SetObjectArrayElement(env, stateNames, state, name
[all...]
/openjdk7/jdk/test/java/net/Socket/reset/
H A DTest.java114 int state = STATE_DATA;
134 if (n > 0 && state != STATE_DATA) {
149 if (n > 0 && state == STATE_IOE) {
155 if (n > 0 && state == STATE_EOF) {
162 if (state == STATE_IOE) {
167 if (state != STATE_EOF) {
169 state = STATE_EOF;
174 if (state == STATE_EOF) {
179 if (state != STATE_IOE) {
181 state
[all...]
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/
H A DCardImpl.java59 // state of this card connection
60 private volatile State state; field in class:CardImpl
89 state = State.OK;
93 State s = state;
102 if (state != State.OK) {
110 state = State.REMOVED;
124 state = State.REMOVED;
244 if (state != State.OK) {
253 state = State.DISCONNECTED;
260 + ", protocol " + getProtocol() + ", state "
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DBaseMarkupSerializer.java42 // Fixed state.unescaped not being set to false when
43 // entering element state.
148 * it's state is not removed but reused when later returning
155 * The index of the next state to place in the array,
156 * or one plus the index of the current state. When zero,
157 * we are in no state.
187 * list in the element state.
370 ElementState state;
373 state = _elementStates[ 0 ];
374 state
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsButtonUI.java184 State state = State.NORMAL;
190 state = (model.isSelected()) ? State.CHECKEDDISABLED
193 state = (model.isSelected()) ? State.CHECKEDPRESSED
196 state = (model.isSelected()) ? State.CHECKEDHOT
199 state = (model.isSelected()) ? State.CHECKEDNORMAL
209 state = State.PRESSED;
211 state = State.DISABLED;
213 state = State.HOTCHECKED;
215 state = State.CHECKED;
217 state
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DWhitespaceStripper.java45 private int state = 0; field in class:WhitespaceStripper
64 switch(state) {
95 state = AFTER_START_ELEMENT;
102 state = AFTER_END_ELEMENT;
110 if(state==AFTER_START_ELEMENT) {
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKEngine.java122 int widgetType, int state, int shadowType, String detail,
125 int widgetType, int state, int shadowType, String detail,
128 int widgetType, int state, int shadowType, String detail,
135 int widgetType, int state, String detail,
138 int widgetType, int state, int shadowType, String detail,
141 int widgetType, int state, int shadowType, String detail,
144 int widgetType, int state, String detail,
147 int widgetType, int state, int shadowType, String detail,
150 int widgetType, int state, String detail,
156 int widgetType, int state, in
121 native_paint_arrow( int widgetType, int state, int shadowType, String detail, int x, int y, int width, int height, int arrowType) argument
124 native_paint_box( int widgetType, int state, int shadowType, String detail, int x, int y, int width, int height, int synthState, int dir) argument
127 native_paint_box_gap( int widgetType, int state, int shadowType, String detail, int x, int y, int width, int height, int gapSide, int gapX, int gapWidth) argument
134 native_paint_expander( int widgetType, int state, String detail, int x, int y, int width, int height, int expanderStyle) argument
137 native_paint_extension( int widgetType, int state, int shadowType, String detail, int x, int y, int width, int height, int placement) argument
140 native_paint_flat_box( int widgetType, int state, int shadowType, String detail, int x, int y, int width, int height, boolean hasFocus) argument
143 native_paint_focus( int widgetType, int state, String detail, int x, int y, int width, int height) argument
146 native_paint_handle( int widgetType, int state, int shadowType, String detail, int x, int y, int width, int height, int orientation) argument
149 native_paint_hline( int widgetType, int state, String detail, int x, int y, int width, int height) argument
155 native_paint_shadow( int widgetType, int state, int shadowType, String detail, int x, int y, int width, int height, int synthState, int dir) argument
158 native_paint_slider( int widgetType, int state, int shadowType, String detail, int x, int y, int width, int height, int orientation) argument
161 native_paint_vline( int widgetType, int state, String detail, int x, int y, int width, int height) argument
164 native_paint_background( int widgetType, int state, int x, int y, int width, int height) argument
378 paintArrow(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, ArrowType direction, String detail, int x, int y, int w, int h) argument
388 paintBox(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h) argument
401 paintBoxGap(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h, PositionType boxGapType, int tabBegin, int size) argument
420 paintExpander(Graphics g, SynthContext context, Region id, int state, ExpanderStyle expanderStyle, String detail, int x, int y, int w, int h) argument
430 paintExtension(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h, PositionType placement, int tabIndex) argument
440 paintFlatBox(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h, ColorType colorType) argument
451 paintFocus(Graphics g, SynthContext context, Region id, int state, String detail, int x, int y, int w, int h) argument
459 paintHandle(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h, Orientation orientation) argument
469 paintHline(Graphics g, SynthContext context, Region id, int state, String detail, int x, int y, int w, int h) argument
485 paintShadow(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h) argument
498 paintSlider(Graphics g, SynthContext context, Region id, int state, ShadowType shadowType, String detail, int x, int y, int w, int h, Orientation orientation) argument
508 paintVline(Graphics g, SynthContext context, Region id, int state, String detail, int x, int y, int w, int h) argument
516 paintBackground(Graphics g, SynthContext context, Region id, int state, Color color, int x, int y, int w, int h) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DDefaultSynthStyle.java37 * using SynthStyle directly, or a specific state using one of the StateInfo
123 * @param states StateInfos describing properties per state
139 public Color getColor(JComponent c, Region id, int state, argument
141 // For the enabled state, prefer the widget's colors
142 if (!id.isSubregion() && state == SynthConstants.ENABLED) {
161 Color color = getColorForState(c, id, state, type);
182 * Returns the color for the specified state.
186 * @param state State of the region.
190 protected Color getColorForState(JComponent c, Region id, int state, argument
192 // Use the best state
217 getFont(SynthContext state) argument
222 getFont(JComponent c, Region id, int state) argument
242 getFontForState(JComponent c, Region id, int state) argument
307 getInsets(SynthContext state, Insets to) argument
389 get(SynthContext state, Object key) argument
606 getStateInfo(int state) argument
714 private int state; field in class:DefaultSynthStyle.StateInfo
732 StateInfo(int state, Font font, Color[] colors) argument
873 setComponentState(int state) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dinterp_masm_x86_32.hpp56 void dispatch_base(TosState state, address* table, bool verifyoop = true);
62 void load_earlyret_value(TosState state);
107 void pop(TosState state); // transition vtos -> state
108 void push(TosState state); // transition state -> vtos
135 void dispatch_prolog(TosState state, int step = 0);
136 void dispatch_epilog(TosState state, int step = 0);
137 void dispatch_only(TosState state); // dispatch via rbx, (assume rbx, is loaded already)
138 void dispatch_only_normal(TosState state); // dispatc
[all...]
H A Dinterp_masm_x86_64.hpp52 void dispatch_base(TosState state, address* table, bool verifyoop = true);
58 void load_earlyret_value(TosState state);
129 void pop(TosState state); // transition vtos -> state
130 void push(TosState state); // transition state -> vtos
147 void dispatch_prolog(TosState state, int step = 0);
148 void dispatch_epilog(TosState state, int step = 0);
150 void dispatch_only(TosState state);
152 void dispatch_only_normal(TosState state);
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxButton.java105 painter.state.set(size == null ? Size.REGULAR : size);
108 painter.state.set(getState(buttonModel));
110 painter.state.set(AlignmentVertical.CENTER);
113 painter.state.set(AlignmentHorizontal.RIGHT);
114 painter.state.set(Widget.BUTTON_POP_UP);
115 painter.state.set(ArrowsOnly.YES);
121 painter.state.set(AlignmentHorizontal.CENTER);
136 painter.state.set(Widget.BUTTON_COMBO_BOX);
137 painter.state.set(IndicatorOnly.YES);
138 painter.state
[all...]

Completed in 214 milliseconds

1234567891011>>