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

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DTextLoader.java52 public void text(UnmarshallingContext.State state, CharSequence text) throws SAXException { argument
54 state.target = xducer.parse(text);
58 handleParseConversionException(state,e);
H A DWildcardLoader.java56 protected Loader selectLoader(UnmarshallingContext.State state, TagName tag) throws SAXException { argument
57 UnmarshallingContext context = state.getContext();
60 Loader l = context.selectRootLoader(state,tag);
H A DLeafPropertyXsiLoader.java57 public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException { argument
58 state.loader = selectLoader(state, ea);
60 state.loader.startElement(state, ea);
63 protected Loader selectLoader(UnmarshallingContext.State state, TagName ea) throws SAXException { argument
65 UnmarshallingContext context = state.getContext();
96 state.getContext().getJAXBContext(),
/openjdk7/jdk/test/javax/swing/JFileChooser/6489130/
H A Dbug6489130.java45 switch (state) {
75 state++;
79 private int state = 0; field in class:bug6489130
/openjdk7/jdk/src/share/classes/sun/rmi/log/
H A DLogHandler.java53 * Creates and returns the initial state of data structure that needs
56 * @return the initial state
81 * @return the state (snapshot)
115 * @param state the current state
116 * @return the new state
120 Object readUpdate(LogInputStream in, Object state) throws Exception { argument
122 return applyUpdate(s.readObject(), state);
130 * object to the current state <code>state</cod
138 applyUpdate(Object update, Object state) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFParser.java46 private int state; field in class:RTFParser
61 // value for the 'state' variable
106 state = S_text;
131 if (state != S_text) {
134 while(index < length && state != S_text) {
156 switch (state)
182 state = S_backslashed;
189 state = S_aftertick;
198 state = S_text;
204 state
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateInterpreterGenerator.hpp55 address generate_continuation_for(TosState state);
56 address generate_return_entry_for(TosState state, int step);
57 address generate_earlyret_entry_for(TosState state);
58 address generate_deopt_entry_for(TosState state, int step);
59 address generate_safept_entry_for(TosState state, address runtime_entry);
77 address generate_trace_code(TosState state) PRODUCT_RETURN0;
/openjdk7/hotspot/test/compiler/8004741/
H A DTest8004741.java67 void toState(int state) { argument
69 progressState = state;
74 void waitFor(int state) { argument
76 while (progressState < state) {
85 if (progressState > state) {
86 System.out.println("unexpected test state change, expected " +
87 state + " but saw " + progressState);
99 // Print before state change, so that other thread is most likely
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/validation/
H A DValidationManager.java57 public final void setEntityState(EntityState state) { argument
59 ((ValidationState)fVSs.elementAt(i)).setEntityState(state);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DXbmImageDecoder.java78 int state = 0;
110 state = 1; /* expecting width */
112 state = 2; /* expecting height */
113 else if (nc > 2 && state < 0 && nm[0] == '0' && nm[1] == 'x') {
154 if (n > 0 && state > 0) {
155 if (state == 1)
160 state = 0;
169 state = -1;
/openjdk7/hotspot/src/os/windows/vm/
H A DosThread_windows.hpp62 void set_last_state(ThreadState state) { _last_state = state; } argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DIndentingXMLStreamWriter.java40 private Object state = SEEN_NOTHING; field in class:IndentingXMLStreamWriter
91 state = SEEN_NOTHING;
101 if (state == SEEN_ELEMENT) {
105 state = stateStack.pop();
109 state = SEEN_ELEMENT;
182 state = SEEN_DATA;
187 state = SEEN_DATA;
192 state = SEEN_DATA;
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/
H A DPCSCTerminals.java47 // terminal state used by waitForCard()
75 public synchronized List<CardTerminal> list(State state) throws CardException { argument
76 if (state == null) {
85 if (state == CARD_INSERTION) {
86 state = CARD_PRESENT;
87 } else if (state == CARD_REMOVAL) {
88 state = CARD_ABSENT;
94 switch (state) {
121 throw new CardException("Unknown state: " + state);
149 present(int state) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DServerTableEntry.java67 switch (state) {
82 // state of each entry
83 private int state; field in class:ServerTableEntry
94 return "ServerTableEntry[" + "state=" + printState() +
123 state = ACTIVATING;
190 System.out.println("ServerTableEntry: state =" + printState());
197 state = ACTIVATED;
213 if (state == ACTIVATED) {
217 //state = RUNNING;
253 if (state
[all...]
/openjdk7/jdk/test/sun/jvmstat/monitor/VmIdentifier/
H A DVmIdentifierCreateResolve.java62 private int state; field in class:VmIdentifierTestHandler
101 + " state = " + state);
104 switch (state) {
106 throw new RuntimeException("Unexpected state: " + state);
109 state = START;
114 throw new RuntimeException("Unexpected thread state");
123 state = VMIDENTIFIER_TESTS;
130 state
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DCheckboxMenuItem.java39 * Selecting the check box in the menu changes its state from
46 * alt="Menu labeled Examples, containing items Basic, Simple, Check, and More Examples. The Check item is a CheckBoxMenuItem instance, in the off state."
50 * in its "off" state.
76 return cmi.state;
82 * The state of a checkbox menu item
87 boolean state = false; field in class:CheckboxMenuItem
101 * The item's state is initially set to "off."
113 * The item's state is initially set to "off."
126 * Create a check box menu item with the specified label and state.
129 * @param state th
137 CheckboxMenuItem(String label, boolean state) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTableHeaderBorder.java48 // we don't want to share this, because the .setSelected() state
54 painter.state.set(AlignmentHorizontal.LEFT);
55 painter.state.set(AlignmentVertical.TOP);
84 final State state = getState(jc);
85 painter.state.set(state);
86 painter.state.set(jc.hasFocus() ? Focused.YES : Focused.NO);
87 painter.state.set(height > 16 ? Widget.BUTTON_BEVEL : Widget.BUTTON_LIST_HEADER);
88 painter.state.set(selected ? BooleanValue.YES : BooleanValue.NO);
92 painter.state
[all...]
H A DAquaTextFieldBorder.java46 painter.state.set(Widget.FRAME_TEXT_FIELD);
47 painter.state.set(FrameOnly.YES);
48 painter.state.set(Size.LARGE);
61 painter.state.set(Size.LARGE);
69 painter.state.set(State.ACTIVE);
70 painter.state.set(Focused.NO);
76 final State state = getStateFor(jc);
77 painter.state.set(state);
78 painter.state
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DFutureTask.java69 * on a "state" field updated via CAS to track completion, along
77 * The run state of this task, initially NEW. The run state
78 * transitions to a terminal state only in methods set,
79 * setException, and cancel. During completion, state may take on
86 * Possible state transitions:
92 private volatile int state; field in class:FutureTask
104 private Object outcome; // non-volatile, protected by state reads/writes
113 * @param s completed state value
136 this.state
[all...]
/openjdk7/jdk/test/java/lang/Thread/
H A DThreadStateTest.java40 // maximum number of retries when checking for thread state.
107 // wait for the thread to transition to the expected state.
108 // There is a small window between the thread checking the state
109 // and the thread actual entering that state.
110 Thread.State state;
112 while ((state = t.getState()) != expected && retryCount < MAX_RETRY) {
113 if (state != Thread.State.RUNNABLE) {
114 throw new RuntimeException("Thread not in expected state yet," +
121 System.out.println("Checking thread state " + state);
161 private volatile int state = RUNNABLE; field in class:ThreadStateTest.MyThread
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DSingleMapNodeProperty.java147 public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
150 target.set((BeanT)state.prev.target);
156 state.target = map.get();
160 state.target = new HashMap();
165 public void leaveElement(State state, TagName ea) throws SAXException {
166 super.leaveElement(state, ea);
176 public void childElement(UnmarshallingContext.State state, TagName ea) throws SAXException {
178 state.loader = entryLoader;
180 super.childElement(state,ea);
197 public void startElement(UnmarshallingContext.State state, TagNam
234 receive(UnmarshallingContext.State state, Object o) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXNETProtocol.java43 public boolean supportsState(int state) { argument
47 public void setState(XWindowPeer window, int state) { argument
48 if (log.isLoggable(PlatformLogger.FINE)) log.fine("Setting state of " + window + " to " + state);
50 requestState(window, state);
52 setInitialState(window, state);
56 private void setInitialState(XWindowPeer window, int state) { argument
58 log.fine("Current state of the window {0} is {1}", window, old_state);
59 if ((state & Frame.MAXIMIZED_VERT) != 0) {
64 if ((state
73 requestState(XWindowPeer window, int state) argument
173 requestState(XWindow window, XAtom state, boolean isAdd) argument
208 setStateHelper(XWindowPeer window, XAtom state, boolean set) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DSpNegoContext.java54 private int state = STATE_NEW; field in class:SpNegoContext
138 if (state == STATE_NEW && isInitiator())
153 if (state == STATE_NEW && isInitiator())
161 if (state == STATE_NEW && isInitiator())
178 (state == STATE_IN_PROCESS || state == STATE_DONE)) {
190 if (state == STATE_NEW && isInitiator())
199 (state == STATE_IN_PROCESS || state == STATE_DONE)) {
212 if (state
1172 printState(int state) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DXPStyle.java129 * @param state a <code>String</code>
137 String getString(Component c, Part part, State state, Prop prop) { argument
138 return getTypeEnumName(c, part, state, prop);
141 TypeEnum getTypeEnum(Component c, Part part, State state, Prop prop) { argument
143 State.getValue(part, state),
148 private static String getTypeEnumName(Component c, Part part, State state, Prop prop) { argument
150 State.getValue(part, state),
167 int getInt(Component c, Part part, State state, Prop prop, int fallback) { argument
169 State.getValue(part, state),
182 Dimension getDimension(Component c, Part part, State state, Pro argument
198 getPoint(Component c, Part part, State state, Prop prop) argument
219 getMargin(Component c, Part part, State state, Prop prop) argument
248 getColor(Component c, Part part, State state, Prop prop, Color fallback) argument
476 final State state; field in class:XPStyle.Skin
485 Skin(Part part, State state) argument
489 Skin(Component component, Part part, State state) argument
513 getWidth(State state) argument
524 getHeight(State state) argument
554 paintSkin(Graphics g, int dx, int dy, State state) argument
568 paintSkin(Graphics g, Rectangle r, State state) argument
584 paintSkin(Graphics g, int dx, int dy, int dw, int dh, State state) argument
609 paintSkinRaw(Graphics g, int dx, int dy, int dw, int dh, State state) argument
626 paintSkin(Graphics g, int dx, int dy, int dw, int dh, State state, boolean borderFill) argument
734 getBoolean(Component c, Part part, State state, Prop prop) argument
742 getPartSize(Part part, State state) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DFieldActivator.java68 * @param state Boolean indiciating whether the field may be matched.
70 public void setMayMatch(Field field, Boolean state); argument

Completed in 305 milliseconds

1234567891011>>