Searched refs:state (Results 426 - 450 of 716) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djdphuff.c16 * up to the start of the current MCU. To do this, we copy state variables
67 savable_state saved; /* Other state at start of MCU */
69 /* These fields are NOT loaded into local working state. */
187 /* Initialize bitread state variables */
192 /* Initialize private state variables */
278 * changes have been made to permanent state. (Exception: some output
298 savable_state state; local
314 /* Load up working state */
316 ASSIGN_STATE(state, entropy->saved);
337 s += state
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousSocketChannelImpl.java53 // protects state, localAddress, and remoteAddress
64 protected volatile int state = ST_UNINITIALIZED; field in class:AsynchronousSocketChannelImpl
66 // reading state
72 // writing state
90 this.state = ST_UNCONNECTED;
101 this.state = ST_CONNECTED;
245 // check and update state
346 // check and update state
425 if (state == ST_PENDING)
568 switch (state) {
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/log/
H A DReliableLog.java48 * the current snapshot was taken. The current stable state is the
64 * applies the updates to the snapshot to obtain the state that
193 * the "readUpdate" callback to apply any logged updates to the state.
566 * zero. Otherwise, log is in an indeterminate state, and logBytes
666 * @param state the most recent snapshot
670 * @return the resulting state of the object after all updates
672 private Object recoverUpdates(Object state) argument
678 if (version == 0) return state;
755 state = handler.readUpdate(new LogInputStream(in, updateLen),
756 state);
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java175 private SynthContext getContext(JComponent c, int state) { argument
177 SynthLookAndFeel.getRegion(c), style, state);
184 private SynthContext getContext(JComponent c, Region region, int state) { argument
186 region, cellStyle, state);
537 int state = ENABLED;
539 state |= SELECTED;
543 state |= FOCUSED;
546 cellContext.setComponentState(state);
595 //modify the paintContext's state to match the state fo
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCoding.java471 long state = 0;
473 state += a[i];
476 state = reduceToUnsignedRange(state);
478 a[i] = (int) state;
713 int state = 0;
717 deltas[i] = value - state;
718 state = value;
724 int delta = value - state;
725 assert(delta == (long)value - (long)state); // n
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Checkbox.cpp44 jboolean state; member in struct:SetStateStruct
458 jboolean state = sss->state; local
483 c->SendMessage(BM_SETCHECK, (WPARAM)(state ? BST_CHECKED : BST_UNCHECKED));
564 env->GetFieldID(cls, "state", "Z");
601 jboolean state)
607 sss->state = state;
600 Java_sun_awt_windows_WCheckboxPeer_setState(JNIEnv *env, jobject self, jboolean state) argument
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DFunctions.java317 * converts the long value state to a SessionState string
319 * @param state the state to be converted
320 * @return the SessionState string representation of the state
322 public static String sessionStateToString(long state) { argument
325 if (state == CKS_RO_PUBLIC_SESSION) {
327 } else if (state == CKS_RO_USER_FUNCTIONS) {
329 } else if (state == CKS_RW_PUBLIC_SESSION) {
331 } else if (state == CKS_RW_USER_FUNCTIONS) {
333 } else if (state
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DBufferConnectionImpl.sjava124 protected int state;
306 state = ESTABLISHED;
553 protected String getStateString( int state )
556 switch (state) {
690 + getStateString( state ) + " "
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DVirtualMachineImpl.java113 // coordinates state changes and corresponding listener notifications
114 private VMState state = new VMState(this); field in class:VirtualMachineImpl
139 VMState state() { method in class:VirtualMachineImpl
140 return state;
151 state.thaw(action.thread());
313 vm.state().thaw();
380 return state.allThreads();
385 return state.topLevelThreadGroups();
394 return state.thawCommand(sender);
402 state
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp138 "FPU stack state must be present due to linear-scan order for FPU stack allocation");
150 tty->print("Reading FPU state for block %d:", block->block_id());
366 tty->print("Exchanged register: %d New state: ", sim()->get_slot(0)); sim()->print(); tty->cr();
388 tty->print("Inserted pop New state: "); sim()->print(); tty->cr();
417 tty->print("Inserted copy (%d -> %d) New state: ", fpu_num(from), fpu_num(to)); sim()->print(); tty->cr();
947 tty->print("Added new register: %d New state: ", reg); cur_sim->print(); tty->cr();
961 tty->print("Exchanged register: %d New state: ", cur_sim->get_slot(slot)); cur_sim->print(); tty->cr();
975 tty->print("Removed register: %d New state: ", reg); cur_sim->print(); tty->cr();
991 tty->print("Renamed register %d to %d New state: ", reg, new_reg); cur_sim->print(); tty->cr();
1102 tty->print("before cleanup: state
1157 intArray* state = sux->fpu_stack_state(); local
1180 intArray* state = sim()->write_state(); local
1196 intArray* state = sim()->write_state(); local
[all...]
H A Dinterpreter_x86_32.cpp81 // rsi: previous interpreter state (C++ interpreter) must preserve
90 ExternalAddress state(SafepointSynchronize::address_of_state());
224 // rsi: previous interpreter state (C++ interpreter) must preserve
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCMenuItem.m99 // indicates what state we're going to.
100 NSInteger state = [sender state];
101 jboolean newState = (state == NSOnState ? JNI_FALSE : JNI_TRUE);
442 (JNIEnv *env, jobject peer, jlong menuItemObj, jboolean state)
446 [item setJavaState: (state == JNI_TRUE)];
/openjdk7/corba/src/share/classes/org/omg/PortableInterceptor/
H A DInterceptors.idl470 * Describes the state of the result of the operation invocation. The
1653 /** Sequence of object reference templates is used for reporting state
1660 * instances may share the same adapter manager, in which case state transitions
1666 /** Type of object adapter state. State changes are reported either to
1671 /** Object adapter state that holds requests temporarily until the
1672 * state is changed.
1676 /** Object adapter state that indicates normal request processing.
1680 /** Object adapter state that causes all requests to be discarded.
1684 /** Object adapter state that causes all requests to be discarded.
1685 * This state indicate
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputContext.java108 // holding the state of clientWindowNotificationEnabled of only non-current input methods
397 Boolean state = (Boolean) perInputMethodState.remove(inputMethod);
398 if (state != null) {
399 clientWindowNotificationEnabled = state.booleanValue();
839 Boolean state = (Boolean) perInputMethodState.remove(inputMethodInstance);
840 if (state != null) {
841 enableClientWindowNotification(inputMethodInstance, state.booleanValue());
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaSpinnerUI.java495 painter.state.set(State.PRESSED);
496 painter.state.set(BooleanValue.NO);
498 painter.state.set(State.PRESSED);
499 painter.state.set(BooleanValue.YES);
501 painter.state.set(State.ACTIVE);
504 painter.state.set(State.DISABLED);
H A DAquaButtonExtendedTypes.java112 border.painter.state.set(SegmentTrailingSeparator.YES);
113 border.painter.state.set(position);
168 void patchUp(final SizeDescriptor descriptor) { border.painter.state.set(IndicatorOnly.YES); }
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DTypedefGen.java116 if (i.state () != null)
118 Enumeration e = i.state ().elements ();
225 // For interfaces having state, e.g., valuetypes.
227 if (baseEntry instanceof InterfaceEntry && ((InterfaceEntry)baseEntry).state () != null)
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiBase.java842 ImpTabPair impTabPair; /* reference to levels state table pair */
1212 int state;
1223 state = LOOKING_FOR_STRONG;
1225 state = NOT_CONTEXTUAL;
1251 if (state == LOOKING_FOR_STRONG) {
1253 state = FOUND_STRONG_CHAR;
1263 state = FOUND_STRONG_CHAR;
1290 state=LOOKING_FOR_STRONG;
1597 /* The Properties state machine table */
1601 /* bits 0..4: next state */
1933 short state; /* current state */ field in class:BidiBase.LevState
[all...]
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
H A DScanManagerTest.java301 ScanState state) {
302 final String msg = String.valueOf(state) + " is not one of " + allowed;
303 assertTrue(msg,allowed.contains(state));
300 assertContained(EnumSet<ScanState> allowed, ScanState state) argument
/openjdk7/jaxp/src/com/sun/java_cup/internal/runtime/
H A Dlr_parser.java41 * the parser uses a state machine (the "viable prefix recognition machine"
42 * built by the parser generator). The current state of the machine is placed
45 * (using the current state and the current lookahead Symbol as indexes) to
47 * changes to a new state by pushing a new Symbol (containing a new state)
49 * side of a production) off the stack. This leaves the parser in the state
51 * table is consulted (using the new state and current lookahead Symbol as
52 * indexes) to determine a new state to go to. The parser then shifts to
53 * this goto state by pushing the left hand side Symbol of the production
54 * (also containing the new state) ont
447 get_action(int state, int sym) argument
502 get_reduce(int state, int sym) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDOMParser.java410 * Set the state of any feature in a SAX2 parser. The parser
415 * @param state The requested state of the feature (true or false).
421 * state is not supported.
423 public void setFeature(String featureId, boolean state) argument
433 if (state != fUseEntityResolver2) {
434 fUseEntityResolver2 = state;
445 fConfiguration.setFeature(featureId, state);
464 * Query the state of a feature.
466 * Query the current state o
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGlyphView.java50 * classes and carry only a small amount of state of their own)
852 * to return a nested class that shares state in this view
1023 for (int i = txtEnd, state = TRAILING; i >= txtOffset; i--) {
1026 if (state == TRAILING) {
1028 } else if (state == CONTENT) {
1029 state = SPACES;
1031 } else if (state == SPACES) {
1038 if (state == TRAILING) {
1041 state = CONTENT;
1044 } else if (state
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Descape.hpp194 void set_escape_state(EscapeState state) { _escape = (u1)state; } argument
197 void set_fields_escape_state(EscapeState state) { _fields_escape = (u1)state; } argument
362 // Compute the escape state for arguments to a call.
422 // Set the escape state of an object and its fields.
424 // Don't change non-escaping state of NULL pointer.
433 // Don't change non-escaping state of NULL pointer.
445 // Adjust scalar_replaceable state after Connection Graph is built.
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIControl.java183 public void set(final JRSUIState state) { argument
184 state.apply(this);
187 void setEncodedState(final long state) { argument
188 currentEncodedProperties = state;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWToolkit.java138 private synchronized void setRunState(int state) { argument
139 runState = state;
147 private void waitForRunState(int state) { argument
148 while (getRunState() < state) {

Completed in 141 milliseconds

<<11121314151617181920>>