Searched refs:state (Results 151 - 175 of 716) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DStructureLoader.java153 public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException { argument
154 UnmarshallingContext context = state.getContext();
174 state.target = child;
176 fireBeforeUnmarshal(beanInfo, child, state);
199 Object o = state.target;
231 public void childElement(UnmarshallingContext.State state, TagName arg) throws SAXException { argument
236 super.childElement(state,arg);
241 state.loader = child.loader;
242 state.receiver = child.receiver;
256 public void text(UnmarshallingContext.State state, CharSequenc argument
262 leaveElement(UnmarshallingContext.State state, TagName ea) argument
[all...]
H A DXsiTypeLoader.java58 public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException { argument
59 JaxBeanInfo beanInfo = parseXsiType(state,ea,defaultBeanInfo);
64 state.loader = loader;
65 loader.startElement(state,ea);
68 /*pacakge*/ static JaxBeanInfo parseXsiType(UnmarshallingContext.State state, TagName ea, @Nullable JaxBeanInfo defaultBeanInfo) throws SAXException { argument
69 UnmarshallingContext context = state.getContext();
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11Digest.java81 // current state, one of S_* above
82 private int state; field in class:P11Digest
119 state = S_BLANK;
133 if ((state != S_INIT) || (token.explicitCancel == false)) {
142 state = S_BUFFERED;
148 if (state == S_BLANK) {
161 state = S_BUFFERED;
163 state = S_BLANK;
188 if (state == S_BUFFERED) {
205 state
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DChunkedInputStream.java66 * input stream is inside a chunk (ie: state == STATE_READING_CHUNK).
164 * Indicates the current state.
166 private int state; field in class:ChunkedInputStream
218 if (!error && state == STATE_DONE) {
237 // assert state == STATE_READING_CHUNKS;
252 state = STATE_AWAITING_CHUNK_EOL;
267 * The parsing of the chunked stream is performed as a state machine with
268 * <code>state</code> representing the current state of the processing.
280 while (state !
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DUtility.java157 byte[] state = new byte[2];
162 encodeRun(buffer, runValue, runLength, state);
167 encodeRun(buffer, runValue, runLength, state);
171 if (state[0] != 0) appendEncodedByte(buffer, (byte)0, state);
204 byte[] state) {
207 if (value == ESCAPE_BYTE) appendEncodedByte(buffer, ESCAPE_BYTE, state);
208 appendEncodedByte(buffer, value, state);
213 if (value == ESCAPE_BYTE) appendEncodedByte(buffer, ESCAPE_BYTE, state);
214 appendEncodedByte(buffer, value, state);
203 encodeRun(StringBuffer buffer, byte value, int length, byte[] state) argument
231 appendEncodedByte(StringBuffer buffer, byte value, byte[] state) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSAllCM.java84 * has this content model. It will return the initial state of the
87 * @return Start state of the content model
91 int[] state = new int[fNumElements + 1];
94 state[i] = STATE_START;
96 return state;
115 * @param currentState Current state
120 // error state
144 // couldn't find the decl, change to error state.
153 * @param currentState Current state of the content model
154 * @return true if the last state wa
209 whatCanGoHere(int[] state) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DFrame.java228 * Frame is in the "normal" state. This symbolic constant names a
229 * frame state with all state bits cleared.
236 * This state bit indicates that frame is iconified.
243 * This state bit indicates that frame is maximized in the
252 * This state bit indicates that frame is maximized in the
261 * This state bit mask indicates that frame is fully maximized
268 * (state & Frame.MAXIMIZED_BOTH) == Frame.MAXIMIZED_BOTH
273 * (state & Frame.MAXIMIZED_BOTH) != 0
347 private int state field in class:Frame
689 setState(int state) argument
742 setExtendedState(int state) argument
756 isFrameStateSupported(int state) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DXMLSerializer.java222 ElementState state;
238 state = getElementState();
250 if (state.empty)
253 if (state.inCData) {
255 state.inCData = false;
260 if (_indenting && ! state.preserveSpace &&
261 ( state.empty || state.afterElement || state.afterComment))
264 preserveSpace = state
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DPhaser.java97 * state of the phaser. If necessary, you can perform any
107 * state, that may be checked using method {@link #isTerminated}. Upon
140 * only by registered parties, the current state of a phaser may be
148 * returns snapshots of these state queries in a form convenient for
269 * Primary state representation, holding four bit-fields:
277 * distinguished by the otherwise illegal state of having zero
282 * state decoding and encoding simple, and keeping race windows
285 * All state updates are performed via CAS except initial
295 private volatile long state; field in class:Phaser
381 long s = (root == this) ? state
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ControlFlow/src/com/sun/hotspot/igv/controlflow/
H A DBlockWidget.java141 protected void notifyStateChanged(ObjectState previousState, ObjectState state) { argument
142 super.notifyStateChanged(previousState, state);
144 if (previousState.isHovered() != state.isHovered()) {
145 if (state.isHovered()) {
152 if (previousState.isSelected() != state.isSelected()) {
153 if (state.isSelected()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DDataWriter.java195 state = SEEN_NOTHING;
230 state = SEEN_NOTHING;
262 if (state == SEEN_ELEMENT) {
267 state = stateStack.pop();
302 // state = SEEN_ELEMENT;
325 state = SEEN_DATA;
366 // Internal state.
369 private Object state = SEEN_NOTHING; field in class:DataWriter
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DDataWriter.java197 state = SEEN_NOTHING;
227 state = SEEN_NOTHING;
259 if (state == SEEN_ELEMENT) {
264 state = stateStack.pop();
291 // state = SEEN_ELEMENT;
314 state = SEEN_DATA;
363 // Internal state.
366 private Object state = SEEN_NOTHING; field in class:DataWriter
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractWatchKey.java59 // key state
60 private State state; field in class:AbstractWatchKey
72 this.state = State.READY;
94 if (state == State.READY) {
95 state = State.SIGNALLED;
175 if (state == State.SIGNALLED && isValid()) {
177 state = State.READY;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonBorder.java82 final State state = getButtonState(b, model);
83 painter.state.set(state);
84 painter.state.set((state != State.DISABLED && state != State.INACTIVE) && b.isFocusPainted() && isFocused(b) ? Focused.YES : Focused.NO);
206 final State state = super.getButtonState(b, model);
207 painter.state.set(state == State.PULSED ? Animating.YES : Animating.NO);
208 return state;
[all...]
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadStateTest.java58 // Force thread state initialization now before the test
130 private static void checkSuspendedThreadState(Thread t, Thread.State state) { argument
138 if (info.getThreadState() != state) {
140 state + " state but got " + info.getThreadState());
147 Utils.checkThreadState(t, state);
157 private static void checkLockInfo(Thread t, Thread.State state, Object lock, Thread owner) { argument
165 if (info.getThreadState() != state) {
167 state + " state bu
239 private int state = RUNNABLE; field in class:ThreadStateTest.MyThread
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DMD4.java46 // state of this object
47 private final int[] state; field in class:MD4
89 state = new int[4];
97 this.state = base.state.clone();
107 * Reset the state of this object.
111 state[0] = 0x67452301;
112 state[1] = 0xefcdab89;
113 state[2] = 0x98badcfe;
114 state[
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DImageView.java104 private int state; field in class:ImageView
140 state = RELOAD_FLAG | RELOAD_IMAGE_FLAG;
215 state |= SYNC_LOAD_FLAG;
218 state = (state | SYNC_LOAD_FLAG) ^ SYNC_LOAD_FLAG;
227 return ((state & SYNC_LOAD_FLAG) != 0);
300 state |= LINK_FLAG;
305 state = (state | LINK_FLAG) ^ LINK_FLAG;
320 state |
[all...]
H A DOption.java90 * Sets the selected state.
92 protected void setSelection(boolean state) { argument
93 selected = state;
97 * Fetches the selection state associated with this option.
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DAffineTransform.java313 * This constant is used for the internal state variable to indicate
320 * @see #state
325 * This constant is used for the internal state variable to indicate
331 * @see #state
336 * This constant is used for the internal state variable to indicate
350 * @see #state
355 * This constant is used for the internal state variable to indicate
358 * transform. The presence of this bit in the state variable changes
364 * @see #state
369 * For methods which combine together the state o
439 transient int state; field in class:AffineTransform
456 AffineTransform(double m00, double m10, double m01, double m11, double m02, double m12, int state) argument
[all...]
/openjdk7/jaxp/src/com/sun/java_cup/internal/runtime/
H A DSymbol.java41 parse_state: the parse state.
94 Constructor to give a start state
96 public Symbol(int sym_num, int state) argument
99 parse_state = state;
109 /** The parse state to be recorded on the parse stack with this symbol.
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DBooleanControl.java32 * might represent the control by a two-state button, an on/off switch, two
51 * The <code>true</code> state label, such as "true" or "on."
56 * The <code>false</code> state label, such as "false" or "off."
74 * @param trueStateLabel the label for the state represented by <code>true</code>,
76 * @param falseStateLabel the label for the state represented by <code>false</code>,
127 * Obtains the label for the specified state.
128 * @return the label for the specified state, such as "true" or "on"
131 public String getStateLabel(boolean state) { argument
132 return ((state == true) ? trueStateLabel : falseStateLabel);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DcppInterpreter.hpp81 static address return_entry (TosState state, int length);
82 static address deopt_entry (TosState state, int length);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsScrollBarUI.java113 // we need to repaint the entire scrollbar because state change for each
114 // button causes a state change for the thumb and other button on Vista
140 State state = State.NORMAL;
143 state = State.DISABLED;
146 xp.getSkin(sb, part).paintSkin(g, trackBounds, state);
168 State state = State.NORMAL;
170 state = State.DISABLED;
172 state = State.PRESSED;
174 state = State.HOT;
178 state
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A DosThread_solaris.hpp43 // Set and get state of _vm_created_thread flag
86 // java.lang.Thread.interrupt state.
91 JavaThreadState _saved_interrupt_thread_state; // the thread state before a system call -- restored afterward
97 void set_saved_interrupt_thread_state(JavaThreadState state) { _saved_interrupt_thread_state = state; } argument
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiThreadState.inline.hpp34 state = thread_state;
43 return state->head_env_thread_state();

Completed in 97 milliseconds

1234567891011>>