Searched refs:state (Results 1 - 25 of 716) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DStateTest.java25 private int state; field in class:StateTest
26 public StateTest(int state) { this.state = state; } argument
28 return state;
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkStateScanner.cpp32 void SharkStateScanner::scan(SharkState* state) { argument
36 stack_integrity_checks(state);
37 start_stack(state->stack_depth());
38 for (int i = state->stack_depth() - 1; i >= 0; i--) {
41 state->stack_addr(i),
43 i + max_stack() - state->stack_depth());
48 start_monitors(state->num_monitors());
49 for (int i = 0; i < state->num_monitors(); i++) {
60 state->oop_tmp_addr(), stack()->oop_tmp_slot_offset());
61 process_method_slot(state
80 stack_integrity_checks(SharkState* state) argument
92 locals_integrity_checks(SharkState* state) argument
[all...]
H A DsharkIntrinsics.hpp37 static void inline_intrinsic(ciMethod* target, SharkState* state);
40 SharkIntrinsics(SharkState* state, ciMethod* target) argument
41 : SharkTargetInvariants(state, target), _state(state) {}
47 SharkState* state() const { function in class:SharkIntrinsics
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.c50 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
54 * - Add comments on state->bits assertion in inffast.c
119 local void fixedtables OF((struct inflate_state FAR *state));
130 struct inflate_state FAR *state; local
132 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
133 state = (struct inflate_state FAR *)strm->state;
134 strm->total_in = strm->total_out = state->total = 0;
137 state
157 struct inflate_state FAR *state; local
174 struct inflate_state FAR *state; local
296 struct inflate_state state; local
351 struct inflate_state FAR *state; local
582 struct inflate_state FAR *state; local
[all...]
H A Dinfback.c43 local void fixedtables OF((struct inflate_state FAR *state));
59 struct inflate_state FAR *state; local
73 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
75 if (state == Z_NULL) return Z_MEM_ERROR;
77 strm->state = (struct internal_state FAR *)state;
78 state->dmax = 32768U;
79 state->wbits = windowBits;
80 state->wsize = 1U << windowBits;
81 state
272 struct inflate_state FAR *state; local
[all...]
/openjdk7/jdk/src/share/classes/java/awt/im/
H A DInputMethodHighlight.java35 * at the abstract level it specifies the conversion state and whether the
45 * <code>state</code>, and <code>variation</code>.
49 * <code>state</code> represents the conversion state. State values are defined
51 * mappings from abstract to concrete styles. Currently defined state values
53 * These state values are recommended for use before and after the
72 * Constant for the raw text state.
77 * Constant for the converted text state.
111 * @param state The conversion state fo
116 InputMethodHighlight(boolean selected, int state) argument
130 InputMethodHighlight(boolean selected, int state, int variation) argument
146 InputMethodHighlight(boolean selected, int state, int variation, Map<TextAttribute,?> style) argument
191 private int state; field in class:InputMethodHighlight
[all...]
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTestMethods.java59 private Fire state; field in class:TestMethods
67 if (this.state != Fire.PropertyChangeEvent)
68 throw new Error("Illegal state: " + this.state);
73 if ((this.state != null) && (this.state != Fire.PropertyBoolean) && (this.state != Fire.PropertyInteger))
74 throw new Error("Illegal state: " + this.state);
76 this.state
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJStatement.java36 public void state(JFormatter f); method in interface:JStatement
/openjdk7/jdk/src/share/classes/sun/misc/
H A DConditionLock.java29 * ConditionLock is a Lock with a built in state variable. This class
30 * provides the ability to wait for the state variable to be set to a
35 * waiting for the state variable to become a particular value and you
37 * lock until the state variable equals its desired value. <p>
43 private int state = 0; field in class:ConditionLock
55 state = initialState;
59 * Acquires the lock when the state variable equals the desired state.
61 * @param desiredState the desired state
68 while (state !
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DabstractCompiler.cpp28 void AbstractCompiler::initialize_runtimes(initializer f, volatile int* state) { argument
29 if (*state != initialized) {
38 if ( *state == uninitialized) {
40 *state = initializing;
42 while (*state == initializing ) {
59 assert(*state == initializing, "wrong state");
60 *state = initialized;
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTestMethods.java54 private Fire state; field in class:TestMethods
62 if (this.state != Fire.PropertyChangeEvent)
63 throw new Error("Illegal state: " + this.state);
68 if ((this.state != null) && (this.state != Fire.PropertyBoolean) && (this.state != Fire.PropertyInteger))
69 throw new Error("Illegal state: " + this.state);
71 this.state
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DProxyLoader.java42 public final void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException { argument
43 Loader loader = selectLoader(state,ea);
44 state.loader = loader;
45 loader.startElement(state,ea);
53 protected abstract Loader selectLoader(UnmarshallingContext.State state, TagName ea) throws SAXException; argument
56 public final void leaveElement(UnmarshallingContext.State state, TagName ea) { argument
H A DDiscarder.java46 public void childElement(UnmarshallingContext.State state, TagName ea) { argument
47 state.target = null;
49 state.loader = this;
H A DDefaultValueLoaderDecorator.java45 public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException { argument
47 if(state.elementDefaultValue==null)
48 state.elementDefaultValue = defaultValue;
50 state.loader = l;
51 l.startElement(state,ea);
/openjdk7/jdk/src/share/classes/javax/swing/undo/
H A DStateEditable.java33 * their state undone/redone by a StateEdit.
45 * state into <EM>state</EM>.
47 public void storeState(Hashtable<Object,Object> state); argument
51 * state out of <EM>state</EM>.
53 public void restoreState(Hashtable<?,?> state); argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXStateProtocol.java32 * Returns whether or not the protocol supports the transition to the state
33 * represented by <code>state</code>. <code>State</code> contains encoded state
34 * as a bit mask of state defined in java.awt.Frame
36 boolean supportsState(int state); argument
39 * Moves window into the state.
41 void setState(XWindowPeer window, int state); argument
44 * Returns current state of the window
49 * Detects whether or not this event is indicates state change
/openjdk7/jdk/test/javax/management/remote/mandatory/passwordAccessFile/
H A DSimpleStandard.java80 return state;
89 state = s;
117 state = "initial state";
146 private String state = "initial state"; field in class:SimpleStandard
/openjdk7/jdk/src/share/classes/java/util/
H A DTimerTask.java43 * The state of this task, chosen from the constants below.
45 int state = VIRGIN; field in class:TimerTask
118 boolean result = (state == SCHEDULED);
119 state = CANCELLED;
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Ddither.h46 * state info needed for breadth-first recursion of color cube from
61 #define INSERTNEW(state, rgb, index) do { \
62 if (!state.usedFlags[rgb]) { \
63 state.usedFlags[rgb] = 1; \
64 state.iLUT[rgb] = index; \
65 state.rgb[state.activeEntries] = rgb; \
66 state.indices[state.activeEntries] = index; \
67 state
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DParserConfigurationSettings.java128 * Set the state of a feature.
130 * Set the state of any feature in a SAX2 parser. The parser
135 * @param state The requested state of the feature (true or false).
140 public void setFeature(String featureId, boolean state) argument
149 fFeatures.put(featureId, state);
188 * Returns the state of a feature.
202 FeatureState state = getFeatureState(featureId);
203 if (state.isExceptional()) {
204 throw new XMLConfigurationException(state
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DTextSerializer.java114 ElementState state;
117 state = getElementState();
128 preserveSpace = state.preserveSpace;
130 // Do not change the current element state yet.
136 // Now it's time to enter a new element state
138 // We still do not change the curent element state.
139 state = enterElementState( null, null, tagName, preserveSpace );
160 ElementState state;
164 // element's state and the parent element's state
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DSHA2.java69 // state of this object
70 private final int[] state; field in class:SHA2
77 state = new int[8];
83 * Creates a SHA2 object.with state (for cloning)
87 this.state = base.state.clone();
99 state[0] = 0x6a09e667;
100 state[1] = 0xbb67ae85;
101 state[2] = 0x3c6ef372;
102 state[
[all...]
H A DSHA.java52 // state of this
53 private final int[] state; field in class:SHA
60 state = new int[5];
66 * Creates a SHA object.with state (for cloning) */
69 this.state = base.state.clone();
84 state[0] = 0x67452301;
85 state[1] = 0xefcdab89;
86 state[2] = 0x98badcfe;
87 state[
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DEnableBlockLayoutAction.java37 private boolean state; field in class:EnableBlockLayoutAction
38 public static final String STATE = "state";
41 state = true;
48 this.state = !state;
49 this.putValue(STATE, state);
H A DPredSuccAction.java37 private boolean state; field in class:PredSuccAction
38 public static final String STATE = "state";
41 state = true;
48 this.state = !state;
49 this.putValue(STATE, state);

Completed in 175 milliseconds

1234567891011>>