Searched refs:state (Results 276 - 300 of 716) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalTitlePane.java117 * Listens for changes in the state of the Window listener to update
118 * the state of the widgets.
138 * Buffered Frame.state property. As state isn't bound, this is kept
141 private int state; field in class:MetalTitlePane
176 state = -1;
186 * Uninstalls the necessary state.
389 frame.setExtendedState(state | Frame.ICONIFIED);
399 frame.setExtendedState(state | Frame.MAXIMIZED_BOTH);
413 if ((state
558 setState(int state) argument
566 setState(int state, boolean updateRegardless) argument
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateInterpreter.cpp91 void EntryPoint::set_entry(TosState state, address entry) { argument
92 assert(0 <= state && state < number_of_states, "state out of bounds");
93 _entry[state] = entry;
97 address EntryPoint::entry(TosState state) const {
98 assert(0 <= state && state < number_of_states, "state out of bounds");
99 return _entry[state];
531 return_entry(TosState state, int length) argument
537 deopt_entry(TosState state, int length) argument
545 TosState_as_index(TosState state) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DClientNotifForwarder.java287 if (state == TERMINATED || beingReconnected) { // should never
288 throw new IOException("Illegal state.");
310 if (state == TERMINATED) {
314 while (state == STOPPING) {
341 state == STARTING || state == STARTED) { // doing or waiting reconnection
355 while (state == STOPPING) {
374 if (state == TERMINATED) {
382 if (state == STARTED) {
463 if (state
896 private int state = STOPPED; field in class:ClientNotifForwarder
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventRequestManagerImpl.java123 String state() { method in class:EventRequestManagerImpl.EventRequestImpl
339 return "breakpoint request " + location() + state();
370 return "class prepare request " + state();
385 return "class unload request " + state();
430 return "exception request " + exception() + state();
445 return "method entry request " + state();
477 return "method exit request " + state();
492 return "monitor contended enter request " + state();
507 return "monitor contended entered request " + state();
522 return "monitor wait request " + state();
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKLookAndFeel.java178 * Maps from Synth state to native GTK state using typesafe enumeration
181 static StateType synthStateToGTKStateType(int state) { argument
183 switch (state) {
205 * Maps from a Synth state to the corresponding GTK state.
217 static int synthStateToGTKState(Region region, int state) { argument
218 if ((state & SynthConstants.PRESSED) != 0) {
226 state = SynthConstants.MOUSE_OVER;
228 state
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DUnmarshallingContext.java80 * Root state.
85 * The currently active state.
213 * in the above example, we set that to {@code state.prev.target} and displace its old value to
214 * {@code state.prev.backup} (where Y goes to {@code state.target}.) Upon the completion of the unmarshalling
232 * (The value of {@link UnmarshallingContext#nsLen} when this state is pushed.
350 public Loader selectRootLoader(State state, TagName tag) throws SAXException { argument
352 Loader l = getJAXBContext().selectRootLoader(state, tag);
380 // this method should be used only when we run out of a state.
994 // the error might have left scopes in inconsistent state,
1035 childElement(UnmarshallingContext.State state, TagName ea) argument
1062 receive(State state, Object o) argument
1084 childElement(UnmarshallingContext.State state, TagName ea) argument
1098 receive(State state, Object o) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dinterp_masm_sparc.cpp86 void InterpreterMacroAssembler::dispatch_prolog(TosState state, int bcp_incr) { argument
93 add(Lbyte_code, Interpreter::distance_from_dispatch_table(state), Lbyte_code);
100 AddressLiteral tbl(Interpreter::dispatch_table(state));
111 void InterpreterMacroAssembler::dispatch_epilog(TosState state, int bcp_incr) { argument
113 verify_FPU(1, state);
114 interp_verify_oop(Otos_i, state, __FILE__, __LINE__);
121 void InterpreterMacroAssembler::dispatch_next(TosState state, int bcp_incr) { argument
125 dispatch_Lbyte_code(state, Interpreter::dispatch_table(state), bcp_incr);
129 void InterpreterMacroAssembler::dispatch_next_noverify_oop(TosState state, in argument
137 dispatch_via(TosState state, address* table) argument
207 load_earlyret_value(TosState state) argument
270 dispatch_base(TosState state, address* table) argument
276 dispatch_normal(TosState state) argument
281 dispatch_only(TosState state) argument
289 dispatch_Lbyte_code(TosState state, address* table, int bcp_incr, bool verify) argument
462 push(TosState state) argument
479 pop(TosState state) argument
976 unlock_if_synchronized_method(TosState state, bool throw_monitor_exception, bool install_monitor_exception) argument
1114 remove_activation(TosState state, bool throw_monitor_exception, bool install_monitor_exception) argument
1522 update_mdp_for_ret(TosState state, Register return_bci) argument
1733 profile_ret(TosState state, Register return_bci, Register scratch) argument
2214 interp_verify_oop(Register reg, TosState state, const char * file, int line) argument
2266 verify_FPU(int stack_depth, TosState state) argument
2332 notify_method_exit(bool is_native_method, TosState state, NotifyMethodExitMode mode) argument
2374 save_return_value(TosState state, bool is_native_call) argument
2397 restore_return_value( TosState state, bool is_native_call) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAImpl.java127 Calling the POAImpl constructor results in a new POA in state STATE_START.
128 Calling initialize( POAManager, Policies ) results in state STATE_RUN.
151 // POA state constants
153 // Note that ordering is important here: we must have the state defined in
160 // Valid state transitions:
179 switch (state) {
193 return "UNKNOWN(" + state + ")" ;
197 // Current state of the POA
198 private int state ; field in class:POAImpl
247 ", state
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/pept/transport/
H A DConnection.java159 * The "state" of the <code>Connection</code>.
161 * param state
163 public void setState(String state); argument
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/logutil/
H A DInput.java64 * Represents the current state of parsing the input.
91 State state = State.OUTER;
104 switch (state) {
106 state = State.IN_CLASS;
113 state = State.IN_EXCEPTION_LIST;
/openjdk7/jdk/src/share/classes/java/security/
H A DSignature.java135 * Possible {@link #state} value, signifying that
141 * Possible {@link #state} value, signifying that
147 * Possible {@link #state} value, signifying that
153 * Current state of this signature object.
155 protected int state = UNINITIALIZED; field in class:Signature
452 state = VERIFY;
496 state = VERIFY;
512 state = SIGN;
530 state = SIGN;
538 * <p>A call to this method resets this signature object to the state
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonCheckBoxUI.java63 painter.state.set(Widget.BUTTON_CHECK_BOX);
H A DAquaButtonRadioUI.java63 painter.state.set(Widget.BUTTON_RADIO);
H A DAquaButtonLabeledUI.java236 painter.state.set(AlignmentVertical.CENTER);
237 painter.state.set(AlignmentHorizontal.CENTER);
242 painter.state.set(AquaUtilControlSize.getUserSizeFrom(b));
243 ((ValueState)painter.state).setValue(model.isSelected() ? isIndeterminate(b) ? 2 : 1 : 0); // 2=mixed, 1=on, 0=off
248 final State state = super.getButtonState(b, model);
250 if (state == State.INACTIVE) return State.INACTIVE;
251 if (state == State.DISABLED) return State.DISABLED;
255 return state;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJConditional.java85 public void state(JFormatter f) { method in class:JConditional
H A DJForEach.java65 public void state(JFormatter f) { method in class:JForEach
H A DJTryBlock.java60 public void state(JFormatter f) { method in class:JTryBlock
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DNGCCEventSource.java26 package com.sun.xml.internal.xsom.impl.parser.state;
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DScanManager.java88 * starting and scheduling directory scans, and reporting application state.
145 * The state of the scan session.
147 private volatile ScanState state = STOPPED; field in class:ScanManager
398 // throws IllegalStateException if state is not STOPPED or COMPLETED
408 if (state != STOPPED && state != COMPLETED)
409 throw new IllegalStateException(state.toString());
471 * application state. However, "schedule" can be called only if
472 * the application state is STOPPED, etc...
501 // Get this object's state
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DSlotAllocator.java97 String state = "Variable slot allocation error"+
99 ErrorMsg err = new ErrorMsg(ErrorMsg.INTERNAL_ERR, state);
/openjdk7/jaxp/src/javax/xml/parsers/
H A DDocumentBuilderFactory.java427 * It is possible for a <code>DocumentBuilderFactory</code> to expose a feature value but be unable to change its state.
448 * @param value Is feature state <code>true</code> or <code>false</code>.
458 * <p>Get the state of the named feature.</p>
465 * It is possible for an <code>DocumentBuilderFactory</code> to expose a feature value but be unable to change its state.
479 /** <p>Get current state of canonicalization.</p>
481 * @return current state canonicalization control
519 * @param state of canonicalization
522 public void setCanonicalization(boolean state) {
523 canonicalState = state;
596 * <p>Set state o
612 setXIncludeAware(final boolean state) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/management/
H A DThreadInfo.java44 * <li>Thread state.</li>
117 * @param state Thread state
126 private ThreadInfo(Thread t, int state, Object lockObj, Thread lockOwner, argument
130 initialize(t, state, lockObj, lockOwner,
142 * @param state Thread state
153 private ThreadInfo(Thread t, int state, Object lockObj, Thread lockOwner, argument
195 initialize(t, state, lockObj, lockOwner,
205 * @param state Threa
216 initialize(Thread t, int state, Object lockObj, Thread lockOwner, long blockedCount, long blockedTime, long waitedCount, long waitedTime, StackTraceElement[] stackTrace, MonitorInfo[] lockedMonitors, LockInfo[] lockedSynchronizers) argument
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.cpp134 ValueStack* state = this; local
135 for_each_state(state) {
136 apply(state->_locals, f);
137 apply(state->_stack, f);
138 apply(state->_locks, f);
155 const ValueStack* state = this; local
156 for_each_state(state) {
157 num_locks += state->locks_size();
282 assert(v != NULL, "just test if state-iteration succeeds");
/openjdk7/hotspot/src/share/vm/runtime/
H A DosThread.hpp39 // to precise thread state information.
42 // Uses of ThreadState need to be replaced by the state in the JavaThread.
66 volatile ThreadState _state; // Thread state *hint*
67 volatile jint _interrupted; // Thread.isInterrupted state
76 void set_state(ThreadState state) { _state = state; } argument
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DThaiShaping.cpp244 // in the state table!
285 // in the state table!
293 le_uint8 state = 0; local
305 if (ch == CH_SARA_AM && isLegalHere(ch, state)) {
307 state = getNextState(CH_NIKHAHIT, conState, inputIndex, glyphSet, errorChar, charClass,
312 state = getNextState(ch, state, j, glyphSet, errorChar, charClass,
319 state = getNextState(ch, state, inputIndex, glyphSet, errorChar, charClass,
323 conState = state;
[all...]

Completed in 119 milliseconds

<<11121314151617181920>>