Searched refs:state (Results 51 - 75 of 716) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthContext.java47 private int state; field in class:SynthContext
57 int state) {
78 context.reset(component, region, style, state);
106 * @param state State of the component as defined in SynthConstants.
110 int state) {
115 reset(component, region, style, state);
129 * Returns the Region identifying this state.
157 void setComponentState(int state) { argument
158 this.state = state;
55 getContext(Class type, JComponent component, Region region, SynthStyle style, int state) argument
109 SynthContext(JComponent component, Region region, SynthStyle style, int state) argument
178 reset(JComponent component, Region region, SynthStyle style, int state) argument
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.hpp36 // Implementation notes: For space reasons, state & counter are both encoded in one word,
37 // The state is encoded using some of the least significant bits, the counter is using the
44 unsigned int _counter; // format: [count|carry|state]
80 void reset(); // sets state to wait state
81 void init(); // sets state into original state
82 void set_state(State state); // sets state and initializes counter correspondingly
83 inline void set(State state, in
89 State state() const { return (State)(_counter & state_mask); } function in class:VALUE_OBJ_CLASS_SPEC
130 set(State state, int count) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DOverviewAction.java37 private boolean state; field in class:OverviewAction
38 public static final String STATE = "state";
47 setState(!state);
52 this.state = b;
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWCheckboxMenuItemPeer.java46 public void handleAction(final boolean state) { argument
50 target.setState(state);
52 target.getLabel(), (state)
/openjdk7/langtools/test/tools/javac/6257443/
H A DT6257443.java52 String state = args[0];
55 if (state.equals("-no")) {
60 else if (state.equals("-yes")) {
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkIntrinsics.cpp82 void SharkIntrinsics::inline_intrinsic(ciMethod *target, SharkState *state) { argument
83 SharkIntrinsics intrinsic(state, target);
154 SharkValue *sb = state()->pop();
155 SharkValue *sa = state()->pop();
179 state()->push(
186 SharkValue *empty = state()->pop();
188 state()->push(
191 function, state()->pop()->jdouble_value())));
192 state()->push(NULL);
196 SharkValue *empty = state()
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DbcEscapeAnalyzer.cpp160 // Merge new state into already processed block.
161 // New state is not taken into account and
230 void BCEscapeAnalyzer::invoke(StateInfo &state, Bytecodes::Code code, ciMethod* target, ciKlass* holder) { argument
254 int arg_base = MAX2(state._stack_height - arg_size, 0);
260 (code != Bytecodes::_invokevirtual || target->is_final_method() || state._stack[arg_base] .is_empty());
264 for (i = state._stack_height - 1; i >= arg_base && skip_callee; i--) {
265 ArgumentMap arg = state._stack[i];
275 set_method_escape(state.raw_pop());
299 // adjust escape state of actual parameters
302 ArgumentMap arg = state
349 iterate_one_block(ciBlock *blk, StateInfo &state, GrowableArray<ciBlock *> &successors) argument
1040 StateInfo state; local
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DAbstractXMLSchema.java89 public final void setFeature(String featureId, boolean state) { argument
90 fFeatures.put(featureId, state ? Boolean.TRUE : Boolean.FALSE);
105 public final void setProperty(String propertyId, Object state) { argument
106 fProperties.put(propertyId, state);
H A DXSGrammarPoolContainer.java61 public void setFeature(String featureId, boolean state); argument
73 public void setProperty(String propertyId, Object state); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DFeatureState.java38 public final boolean state; field in class:FeatureState
48 public FeatureState(Status status, boolean state) { argument
50 this.state = state;
H A DPropertyState.java37 public final Object state; field in class:PropertyState
46 public PropertyState(Status status, Object state) { argument
48 this.state = state;
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DCheckboxPeer.java41 * Sets the state of the checkbox to be checked ({@code true}) or
44 * @param t the state to set on the checkbox
48 void setState(boolean state); argument
/openjdk7/jdk/src/share/classes/com/sun/security/jgss/
H A DExtendedGSSContext.java142 * @param state true if the policy should be respected
147 public void requestDelegPolicy(boolean state) throws GSSException; argument
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DcppInterpreterGenerator_sparc.hpp35 void generate_compute_interpreter_state(const Register state,
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputEdge.java41 private State state; field in class:InputEdge
47 this.state = State.SAME;
51 return state;
55 this.state = x;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DImageCache.java86 final JRSUIState state) {
87 final int hash = hash(config, w, h, scale, state);
97 if (ref != null && ref.equals(config, w, h, scale, state)) {
115 final int scale, final JRSUIState state) {
116 if (state.is(JRSUIConstants.Animating.YES)) {
120 final int hash = hash(config, w, h, scale, state);
158 map.put(hash, new PixelCountSoftReference(image, referenceQueue, newPixelCount, hash, config, w, h, scale, state));
167 final JRSUIState state) {
172 hash = 31 * hash + state.hashCode();
192 private final JRSUIState state; field in class:ImageCache.PixelCountSoftReference
84 getImage(final GraphicsConfiguration config, final int w, final int h, final int scale, final JRSUIState state) argument
113 setImage(final Image image, final GraphicsConfiguration config, final int w, final int h, final int scale, final JRSUIState state) argument
165 hash(final GraphicsConfiguration config, final int w, final int h, final int scale, final JRSUIState state) argument
194 PixelCountSoftReference(final Image referent, final ReferenceQueue<? super Image> q, final int pixelCount, final int hash, final GraphicsConfiguration config, final int w, final int h, final int scale, final JRSUIState state) argument
208 equals(final GraphicsConfiguration config, final int w, final int h, final int scale, final JRSUIState state) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJLabel.java48 public void state(JFormatter f) { method in class:JLabel
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DDomLoader.java45 * Used to capture the state.
99 public void startElement(UnmarshallingContext.State state, TagName ea) throws SAXException { argument
100 UnmarshallingContext context = state.getContext();
101 if (state.target == null)
102 state.target = new State(context);
104 State s = (State) state.target;
115 public void childElement(UnmarshallingContext.State state, TagName ea) throws SAXException { argument
116 state.loader = this;
117 State s = (State) state.prev.target;
119 state
123 text(UnmarshallingContext.State state, CharSequence text) argument
136 leaveElement(UnmarshallingContext.State state, TagName ea) argument
[all...]
H A DLoader.java67 * The callee may change <tt>state.loader</tt> to designate another {@link Loader}
74 public void startElement(UnmarshallingContext.State state,TagName ea) throws SAXException { argument
88 public void childElement(UnmarshallingContext.State state, TagName ea) throws SAXException { argument
91 state.loader = Discarder.INSTANCE;
92 state.receiver = null;
129 public void text(UnmarshallingContext.State state, CharSequence text) throws SAXException { argument
147 public void leaveElement(UnmarshallingContext.State state, TagName ea) throws SAXException { argument
186 * @param state
187 * state of the newly create child object.
189 protected final void fireBeforeUnmarshal(JaxBeanInfo beanInfo, Object child, UnmarshallingContext.State state) throw argument
208 fireAfterUnmarshal(JaxBeanInfo beanInfo, Object child, UnmarshallingContext.State state) argument
254 handleParseConversionException(UnmarshallingContext.State state, Exception e) argument
[all...]
H A DReceiver.java39 * @param state
40 * points to the parent's current state.
44 void receive(UnmarshallingContext.State state, Object o) throws SAXException; argument
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageRowTable.h39 return img->state;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DTagStack.java36 * complete state of the parser while reading a document.
50 ContentModelState state; field in class:TagStack
67 this.state = new ContentModelState(elem.getContent());
102 return (state != null) ? state.first() : null;
110 if (state == null) {
113 return state.getModel();
129 * Advance the state by reducing the given element.
131 * state is not advanced.
137 if (state !
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/eawt/
H A DApplicationEvent.java70 * @param state <code>true</code> if the event has been handled, otherwise <code>false</code>.
76 public void setHandled(final boolean state) { argument
77 fHandled = state;
/openjdk7/jdk/src/share/classes/sun/security/jgss/spi/
H A DGSSContextSpi.java47 * The context options can only be requested in state 1. In state 3,
50 * while in state 1 and 2, and the established values in state 3.
101 public void requestMutualAuth(boolean state) throws GSSException; argument
103 public void requestReplayDet(boolean state) throws GSSException; argument
105 public void requestSequenceDet(boolean state) throws GSSException; argument
107 public void requestCredDeleg(boolean state) throws GSSException; argument
109 public void requestAnonymity(boolean state) throws GSSException; argument
111 public void requestConf(boolean state) throw argument
113 requestInteg(boolean state) argument
115 requestDelegPolicy(boolean state) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharEUC2.java37 private int firstByte, state; field in class:ByteToCharEUC2
43 state = G0;
56 * flush out any residual data and reset the buffer state
61 if (state != G0) {
75 state = G0;
94 switch (state) {
109 state = G1;
113 state = G0;
121 if (state == G0) {

Completed in 95 milliseconds

1234567891011>>