Searched defs:states (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleStateSet.java54 protected Vector<AccessibleState> states = null; field in class:AccessibleStateSet
60 states = null;
64 * Creates a new state with the initial set of states contained in
65 * the array of states passed in. Duplicate entries are ignored.
67 * @param states an array of AccessibleState describing the state set.
69 public AccessibleStateSet(AccessibleState[] states) { argument
70 if (states.length != 0) {
71 this.states = new Vector(states.length);
72 for (int i = 0; i < states
111 addAll(AccessibleState[] states) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DUtils.java198 public static String statesToConstantName(String states) { argument
199 String s = states.replace(" ", "");
200 s = states.replace("+", "_");
204 //takes a states string of the form Enabled+Foo+Bar.
206 public static String statesToClassName(String states) { argument
207 String s = states.replace(" ", "");
208 s = states.replace("+", "And");
/openjdk7/jdk/test/com/sun/jdi/
H A DPopSynchronousTest.java102 static final String[] states = field in class:PopSynchronousTest
171 String name = states[stateIndex];
180 stateIndex = (stateIndex + 1) % (states.length);
184 for (int i=0; i < states.length; ++i) {
185 if (states[i].equals(stateName)) {
204 } while(!states[stateIndex].equals(stateName));
/openjdk7/jdk/test/java/awt/Frame/MaximizedToIconified/
H A DMaximizedToIconified.java39 * states in the newState of the state change event.
72 private static void examineStates(Frame f_arg, int states[]) { argument
95 for (int state: states) {
121 // NOTE! Compound states (like MAXIMIZED_BOTH | ICONIFIED) CANNOT be used,
122 // because Toolkit.isFrameStateSupported() method reports these states
123 // as not supported. And such states will simply be skipped.
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusStyle.java93 * <p>NimbusStyle allows you to specify custom states, or modify the order of
94 * states. Synth (and thus Nimbus) has the concept of a "state". For example,
96 * "DISABLED" state. These are all "standard" states which are defined in synth,
101 * you specify these custom states by including a special key in UIDefaults.
102 * The following UIDefaults entries define three states for this button:</p>
111 * <p>As you can see, the <code>JButton.States</code> entry lists the states
114 * then the standard Synth states will be assumed. If you specify the entry
115 * but the list of states is empty or null, then the standard synth states
146 * states o
926 getNextState(RuntimeState[] states, int[] lastState, int xstate) argument
1064 RuntimeState[] states = null; field in class:NimbusStyle.Values
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DDefaultSynthStyle.java36 * SynthStyle methods. Many of the properties can be specified for all states,
60 private StateInfo[] states; field in class:DefaultSynthStyle
101 if (style.states != null) {
102 states = new StateInfo[style.states.length];
103 for (int counter = style.states.length - 1; counter >= 0;
105 states[counter] = (StateInfo)style.states[counter].clone();
123 * @param states StateInfos describing properties per state
127 StateInfo[] states, Ma
126 DefaultSynthStyle(Insets insets, boolean opaque, StateInfo[] states, Map data) argument
586 setStateInfo(StateInfo[] states) argument
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateInterpreter.cpp302 const TosState states[] = {btos, ctos, stos, itos, ltos, ftos, dtos, atos, vtos}; local
303 int index = Interpreter::TosState_as_index(states[j]);
304 Interpreter::_return_3_addrs_by_index[index] = Interpreter::return_entry(states[j], 3);
305 Interpreter::_return_5_addrs_by_index[index] = Interpreter::return_entry(states[j], 5);

Completed in 213 milliseconds