Searched refs:State (Results 76 - 100 of 179) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsPopupMenuSeparatorUI.java35 import com.sun.java.swing.plaf.windows.TMSchema.State;
73 skin.paintSkin(g, x, y, s.width - x - 1, skinHeight, State.NORMAL);
H A DWindowsSliderUI.java183 State state = State.NORMAL;
186 state = State.FOCUSED;
189 state = State.HOT;
192 state = State.PRESSED;
195 state = State.DISABLED;
H A DWindowsTabbedPaneUI.java188 State state = State.NORMAL;
190 state = State.SELECTED;
192 state = State.HOT;
202 int x, int y, int w, int h, State state) {
H A DWindowsMenuBarUI.java164 State state = isActive(c) ? State.ACTIVE : State.INACTIVE;
H A DWindowsPopupMenuUI.java43 import com.sun.java.swing.plaf.windows.TMSchema.State;
200 skin.paintSkin(g, 0, 0, c.getWidth(),c.getHeight(), State.NORMAL);
214 State.NORMAL);
H A DWindowsGraphicsUtils.java121 State state = WindowsButtonUI.getXPButtonState(b);
125 static void paintXPText(AbstractButton b, Part part, State state,
135 if (part == Part.TP_BUTTON && state == State.DISABLED) {
136 Color enabledColor = xp.getColor(b, part, State.NORMAL,
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonLabeledUI.java247 protected State getButtonState(final AbstractButton b, final ButtonModel model) {
248 final State state = super.getButtonState(b, model);
250 if (state == State.INACTIVE) return State.INACTIVE;
251 if (state == State.DISABLED) return State.DISABLED;
252 if (model.isArmed() && model.isPressed()) return State.PRESSED;
253 if (model.isSelected()) return State.ACTIVE;
H A DAquaComboBoxButton.java82 protected State getState(final ButtonModel buttonModel) {
83 if (!comboBox.isEnabled()) return State.DISABLED;
84 if (!AquaFocusHandler.isActive(comboBox)) return State.INACTIVE;
85 if (buttonModel.isArmed()) return State.PRESSED;
86 return State.ACTIVE;
H A DAquaSliderUI.java139 final State state = getState();
169 public void paintTrack(final Graphics g, final JComponent c, final Orientation orientation, final State state) {
180 public void paintThumb(final Graphics g, final JComponent c, final Orientation orientation, final State state) {
200 State getState() {
202 return State.DISABLED;
206 return State.PRESSED;
210 return State.INACTIVE;
213 return State.ACTIVE;
H A DAquaSplitPaneDividerUI.java36 import apple.laf.JRSUIConstants.State;
116 protected State getState() {
117 return splitPane.isEnabled() ? State.ACTIVE : State.DISABLED;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DSingleMapNodeProperty.java57 import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallingContext.State;
147 public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
165 public void leaveElement(State state, TagName ea) throws SAXException {
176 public void childElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
197 public void startElement(UnmarshallingContext.State state, TagName ea) {
202 public void leaveElement(UnmarshallingContext.State state, TagName ea) {
209 public void childElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
234 public void receive(UnmarshallingContext.State state, Object o) {
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadStackTrace.java89 Utils.checkThreadState(examiner, Thread.State.WAITING);
254 Utils.checkThreadState(itself, Thread.State.RUNNABLE);
262 Utils.checkThreadState(blockedThread, Thread.State.BLOCKED);
285 Utils.checkThreadState(itself, Thread.State.RUNNABLE);
290 Utils.checkThreadState(blockedThread, Thread.State.BLOCKED);
308 Utils.checkThreadState(blockedThread, Thread.State.WAITING);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DUnmarshallingContext.java82 private final State root;
87 private State current;
180 * State information for each element.
182 public final class State { class in class:UnmarshallingContext
207 * since there's only one {@link State} per element, this mechanism only works when there's one object
219 * relationship between unmarshalled objects and {@link State} parent/child relationship, and
225 * @see ElementBeanInfoImpl.IntercepterLoader#startElement(State, TagName)
226 * @see ElementBeanInfoImpl.IntercepterLoader#intercept(State, Object)
240 * {@link Loader#childElement(State, TagName)} is called
242 * {@link Loader#startElement(State, TagNam
263 private State(State prev) { method in class:UnmarshallingContext.State
[all...]
H A DLeafPropertyXsiLoader.java57 public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
63 protected Loader selectLoader(UnmarshallingContext.State state, TagName ea) throws SAXException {
H A DXsiTypeLoader.java58 public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
68 /*pacakge*/ static JaxBeanInfo parseXsiType(UnmarshallingContext.State state, TagName ea, @Nullable JaxBeanInfo defaultBeanInfo) throws SAXException {
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DAOMEntry.java36 import com.sun.corba.se.spi.orbutil.fsm.State ;
71 public static final State INVALID = new StateImpl( "Invalid" ) ;
72 public static final State INCARN = new StateImpl( "Incarnating" ) {
78 public static final State VALID = new StateImpl( "Valid" ) ;
79 public static final State ETHP = new StateImpl( "EtherealizePending" ) ;
80 public static final State ETH = new StateImpl( "Etherealizing" ) {
93 public static final State DESTROYED = new StateImpl( "Destroyed" ) ;
175 // State, Input, Guard, Action, new State
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp848 enum State { enum in class:os::SuspendResume
856 volatile State _state;
862 State switch_state(State from, State to) {
863 State result = (State) Atomic::cmpxchg((jint) to, (jint *) &_state, (jint) from);
874 State state() const { return _state; }
876 State request_suspend() {
880 State cancel_suspen
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusStyle.java286 List<State> states = new ArrayList<State>();
303 if (!State.isStandardStateName(s[i])) {
307 State customState = (State)defaults.get(stateName);
312 states.add(State.getStandardState(s[i]));
320 values.stateTypes = states.toArray(new State[states.size()]);
325 for (State state : states) {
336 states.add(State.Enabled);
337 states.add(State
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dmatcher.hpp43 // Private arena of State objects
54 MachNode *ReduceInst( State *s, int rule, Node *&mem);
55 void ReduceInst_Chain_Rule( State *s, int rule, Node *&mem, MachNode *mach);
56 uint ReduceInst_Interior(State *s, int rule, Node *&mem, MachNode *mach, uint num_opnds);
57 void ReduceOper( State *s, int newrule, Node *&mem, MachNode *mach );
87 Node *Label_Root( const Node *n, State *svec, Node *control, const Node *mem );
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DBoundedZoomAction.java33 import org.netbeans.api.visual.action.WidgetAction.State;
89 public State mouseWheelMoved(Widget widget, WidgetMouseWheelEvent event) {
173 return WidgetAction.State.CONSUMED;
/openjdk7/jdk/test/java/util/logging/
H A DDrainFindDeadlockTest.java25 import java.lang.Thread.State;
143 boolean isXblocked = x.getState().equals(State.BLOCKED);
144 boolean isYblocked = y.getState().equals(State.BLOCKED);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DSunWritableRaster.java38 import sun.java2d.StateTrackable.State;
89 stealer.setTrackable(db, StateTrackableDelegate.createInstance(State.STABLE));
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java156 public static class State extends Property { class in class:JRSUIConstants
162 State(final byte value) { method in class:JRSUIConstants.State
167 public static final State ACTIVE = new State(_active);
169 public static final State INACTIVE = new State(_inactive);
171 public static final State DISABLED = new State(_disabled);
173 public static final State PRESSED = new State(_presse
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DVM.java28 import static java.lang.Thread.State.*;
363 * Returns Thread.State for the given threadStatus
365 public static Thread.State toThreadState(int threadStatus) {
/openjdk7/jdk/src/macosx/native/com/apple/laf/
H A DJRSUIConstantSync.m210 CONSISTENCY_CHECK(State, active);
211 CONSISTENCY_CHECK(State, inactive);
212 CONSISTENCY_CHECK(State, disabled);
213 CONSISTENCY_CHECK(State, pressed);
214 CONSISTENCY_CHECK(State, pulsed);
215 CONSISTENCY_CHECK(State, rollover);
216 CONSISTENCY_CHECK(State, drag);
341 IF_CHANGED_SET_USING(State, JRSUIControlSetState);

Completed in 94 milliseconds

12345678