Searched refs:State (Results 51 - 75 of 179) sorted by relevance

12345678

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/fsm/
H A DStateEngineImpl.java41 import com.sun.corba.se.spi.orbutil.fsm.State ;
81 public StateEngine add( State oldState, Input input, Guard guard, Action action,
82 State newState ) throws IllegalArgumentException,
94 public StateEngine add( State oldState, Input input, Action action,
95 State newState ) throws IllegalArgumentException,
107 public StateEngine setDefault( State oldState, Action action, State newState )
119 public StateEngine setDefault( State oldState, State newState )
125 public StateEngine setDefault( State oldStat
[all...]
H A DNameBase.java29 import com.sun.corba.se.spi.orbutil.fsm.State ;
54 if (this instanceof State)
55 return "State" ;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DLoader.java74 public void startElement(UnmarshallingContext.State state,TagName ea) throws SAXException {
88 public void childElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
129 public void text(UnmarshallingContext.State state, CharSequence text) throws SAXException {
136 * True if this loader expects the {@link #text(UnmarshallingContext.State, CharSequence)} method
147 public void leaveElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
189 protected final void fireBeforeUnmarshal(JaxBeanInfo beanInfo, Object child, UnmarshallingContext.State state) throws SAXException {
208 protected final void fireAfterUnmarshal(JaxBeanInfo beanInfo, Object child, UnmarshallingContext.State state) throws SAXException {
254 protected static void handleParseConversionException(UnmarshallingContext.State state, Exception e) throws SAXException {
H A DDefaultValueLoaderDecorator.java45 public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
H A DLeafPropertyLoader.java48 public void text(UnmarshallingContext.State state, CharSequence text) throws SAXException {
H A DTextLoader.java52 public void text(UnmarshallingContext.State state, CharSequence text) throws SAXException {
H A DValuePropertyLoader.java50 public void text(UnmarshallingContext.State state, CharSequence text) throws SAXException {
H A DWildcardLoader.java56 protected Loader selectLoader(UnmarshallingContext.State state, TagName tag) throws SAXException {
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DSynchronizationStatistics.java93 checkThreadState(examiner, Thread.State.WAITING);
125 private static void checkThreadState(Thread thread, Thread.State s)
143 Thread.State s1, Thread.State s2)
368 private void checkInfo(StatThread t, Thread.State s, Object lock,
373 if (s == Thread.State.WAITING || s == Thread.State.TIMED_WAITING) {
375 } else if (s == Thread.State.BLOCKED) {
425 if (s == Thread.State.BLOCKED) {
436 if (s == Thread.State
[all...]
H A DThreadStateTest.java65 // Utils.checkThreadState(myThread, Thread.State.NEW);
69 Utils.checkThreadState(myThread, Thread.State.RUNNABLE);
70 checkLockInfo(myThread, Thread.State.RUNNABLE, null, null);
74 checkSuspendedThreadState(myThread, Thread.State.RUNNABLE);
79 Utils.checkThreadState(myThread, Thread.State.BLOCKED);
80 checkLockInfo(myThread, Thread.State.BLOCKED,
85 Utils.checkThreadState(myThread, Thread.State.WAITING);
86 checkLockInfo(myThread, Thread.State.WAITING,
90 Utils.checkThreadState(myThread, Thread.State.TIMED_WAITING);
91 checkLockInfo(myThread, Thread.State
[all...]
/openjdk7/jdk/test/java/lang/Thread/
H A DThreadStateTest.java55 checkThreadState(myThread, Thread.State.NEW);
59 checkThreadState(myThread, Thread.State.RUNNABLE);
63 checkThreadState(myThread, Thread.State.BLOCKED);
67 checkThreadState(myThread, Thread.State.WAITING);
70 checkThreadState(myThread, Thread.State.TIMED_WAITING);
80 checkThreadState(myThread, Thread.State.WAITING);
83 checkThreadState(myThread, Thread.State.TIMED_WAITING);
88 checkThreadState(myThread, Thread.State.TIMED_WAITING);
91 checkThreadState(myThread, Thread.State.TERMINATED);
106 private static void checkThreadState(Thread t, Thread.State expecte
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonBorder.java82 final State state = getButtonState(b, model);
84 painter.state.set((state != State.DISABLED && state != State.INACTIVE) && b.isFocusPainted() && isFocused(b) ? Focused.YES : Focused.NO);
107 protected State getButtonState(final AbstractButton b, final ButtonModel model) {
108 if (!b.isEnabled()) return State.DISABLED;
116 if (!AquaFocusHandler.isActive(b)) return State.INACTIVE;
118 if (model.isArmed() && model.isPressed()) return State.PRESSED;
119 if (model.isSelected() && isSelectionPressing()) return State.PRESSED;
120 if ((b instanceof JButton) && ((JButton)b).isDefaultButton()) return State.PULSED;
122 return State
[all...]
H A DAquaTableHeaderBorder.java84 final State state = getState(jc);
117 protected State getState(final JComponent jc) {
118 if (!jc.isEnabled()) return State.DISABLED;
121 if (rootPane == null) return State.ACTIVE;
123 if (!AquaFocusHandler.isActive(rootPane)) return State.INACTIVE;
125 return State.ACTIVE;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/
H A DSchemaParser.java218 abstract class State extends Handler { class in class:SchemaParser
219 State parent;
234 abstract State create();
235 abstract State createChildState(String localName) throws SAXException;
238 void setParent(State parent) {
266 State state = createChildState(localName);
398 final State nextState;
404 ForeignElementHandler(State nextState, CommentList comments) {
469 final State nextState;
471 Skipper(State nextStat
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DDataBuffer.java38 import sun.java2d.StateTrackable.State;
39 import static sun.java2d.StateTrackable.State.*;
138 * data type and size with the indicated initial {@link State State}.
140 * @param initialState the initial {@link State State} state of the data
145 DataBuffer(State initialState,
171 * banks with the indicated initial {@link State State}.
174 * @param initialState the initial {@link State Stat
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.cpp56 void InvocationCounter::set_state(State state) {
86 const char* InvocationCounter::state_as_string(State state) {
95 const char* InvocationCounter::state_as_short_string(State state) {
120 void InvocationCounter::def(State state, int init, Action action) {
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpConnection.java64 public enum State {IDLE, REQUEST, RESPONSE}; enum in class:HttpConnection
65 volatile State state;
86 State getState() {
90 void setState (State s) {
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsCheckBoxMenuItemUI.java34 import com.sun.java.swing.plaf.windows.TMSchema.State;
56 public State getState(JMenuItem menuItem) {
H A DWindowsRadioButtonMenuItemUI.java34 import com.sun.java.swing.plaf.windows.TMSchema.State;
55 public State getState(JMenuItem menuItem) {
H A DWindowsTableHeaderUI.java169 State state = State.NORMAL;
174 state = State.PRESSED;
176 state = State.HOT;
188 state = State.SORTEDNORMAL;
191 state = State.SORTEDPRESSED;
194 state = State.SORTEDHOT;
H A DWindowsComboBoxUI.java38 import static com.sun.java.swing.plaf.windows.TMSchema.State;
220 State getXPComboBoxState(JComponent c) {
221 State state = State.NORMAL;
223 state = State.DISABLED;
225 state = State.PRESSED;
227 state = State.HOT;
234 State state = getXPComboBoxState(c);
423 protected State getState() {
424 State r
[all...]
H A DWindowsInternalFrameUI.java103 State state = ((JInternalFrame)c).isSelected() ? State.ACTIVE : State.INACTIVE;
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DNullSurfaceData.java33 import sun.java2d.StateTrackable.State;
46 super(State.IMMUTABLE, SurfaceType.Any, ColorModel.getRGBdefault());
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/logutil/
H A DInput.java66 private enum State enum in class:Input
91 State state = State.OUTER;
106 state = State.IN_CLASS;
113 state = State.IN_EXCEPTION_LIST;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DRangeSlider.java62 private State state;
67 private enum State { enum in class:RangeSlider
76 state = State.Initial;
205 if (state == State.DragBar) {
244 if (state == State.DragBar) {
254 } else if (state == State.DragFirstPosition) {
262 } else if (state == State.DragSecondPosition) {
331 state = State.DragFirstPosition;
333 state = State.DragSecondPosition;
335 state = State
[all...]

Completed in 223 milliseconds

12345678