Searched refs:state (Results 226 - 250 of 716) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DCardTerminals.java38 * presence state of each of its terminals. Multiple objects should be used
77 * state.
79 * <p>If state is {@link State#ALL State.ALL}, this method returns
81 * If state is {@link State#CARD_PRESENT State.CARD_PRESENT} or
85 * <p>If state is {@link State#CARD_INSERTION State.CARD_INSERTION} or
95 * @param state the State
102 public abstract List<CardTerminal> list(State state) throws CardException; argument
157 * <code>timeout</code> milliseconds even if there is no change in state.
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthMenuUI.java172 SynthContext getContext(JComponent c, int state) { argument
175 style, state);
182 private SynthContext getContext(JComponent c, Region region, int state) { argument
184 region, accStyle, state);
188 int state;
194 state = MOUSE_OVER;
197 state = SynthLookAndFeel.getComponentState(c);
200 state |= SELECTED;
202 return state;
279 // Refetch the appropriate check indicator for the current state
[all...]
H A DSynthSplitPaneUI.java211 private SynthContext getContext(JComponent c, int state) { argument
213 SynthLookAndFeel.getRegion(c), style, state);
220 private SynthContext getContext(JComponent c, Region region, int state) { argument
223 dividerStyle, state);
226 style, state);
230 int state = SynthLookAndFeel.getComponentState(c);
233 state |= MOUSE_OVER;
235 return state;
/openjdk7/hotspot/src/share/vm/compiler/
H A DabstractCompiler.hpp37 // Used for tracking global state of compiler runtime initialization
42 void initialize_runtimes(initializer f, volatile int* state);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsGraphicsUtils.java121 State state = WindowsButtonUI.getXPButtonState(b);
122 paintXPText(b, part, state, g, x, y, text, mnemIndex);
125 static void paintXPText(AbstractButton b, Part part, State state, argument
131 textColor = xp.getColor(b, part, state, Prop.TEXTCOLOR, b.getForeground());
135 if (part == Part.TP_BUTTON && state == State.DISABLED) {
139 textColor = xp.getColor(b, Part.BP_PUSHBUTTON, state,
146 state, Prop.TEXTSHADOWTYPE);
149 Color shadowColor = xp.getColor(b, part, state,
151 Point offset = xp.getPoint(b, part, state, Prop.TEXTSHADOWOFFSET);
H A DWindowsInternalFrameUI.java103 State state = ((JInternalFrame)c).isSelected() ? State.ACTIVE : State.INACTIVE;
108 state);
112 state);
116 state);
H A DWindowsTabbedPaneUI.java188 State state = State.NORMAL;
190 state = State.SELECTED;
192 state = State.HOT;
195 paintRotatedSkin(g, xp.getSkin(tabPane, part), tabPlacement, x, y, w, h, state);
202 int x, int y, int w, int h, State state) {
208 skin.paintSkin(g2d, 0, 0, h, w, state);
213 skin.paintSkin(g2d, 0, 0, h, w, state);
219 skin.paintSkin(g2d, 0, 0, w, h, state);
223 default: skin.paintSkin(g2d, 0, 0, w, h, state);
201 paintRotatedSkin(Graphics g, Skin skin, int tabPlacement, int x, int y, int w, int h, State state) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DMonitorInfoImpl.java34 * access synchronized on (vm.state())
58 synchronized (vm.state()) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreterGenerator_x86.hpp48 void generate_compute_interpreter_state(const Register state,
H A Dinterp_masm_x86_64.cpp152 void InterpreterMacroAssembler::load_earlyret_value(TosState state) { argument
157 switch (state) {
160 verify_oop(rax, state); break;
364 void InterpreterMacroAssembler::pop(TosState state) { argument
365 switch (state) {
377 verify_oop(rax, state);
380 void InterpreterMacroAssembler::push(TosState state) { argument
381 verify_oop(rax, state);
382 switch (state) {
440 void InterpreterMacroAssembler::dispatch_prolog(TosState state, in argument
444 dispatch_epilog(TosState state, int step) argument
448 dispatch_base(TosState state, address* table, bool verifyoop) argument
471 dispatch_only(TosState state) argument
475 dispatch_only_normal(TosState state) argument
479 dispatch_only_noverify(TosState state) argument
484 dispatch_next(TosState state, int step) argument
492 dispatch_via(TosState state, address* table) argument
511 remove_activation( TosState state, Register ret_addr, bool throw_monitor_exception, bool install_monitor_exception, bool notify_jvmdi) argument
1397 verify_oop(Register reg, TosState state) argument
1403 verify_FPU(int stack_depth, TosState state) argument
1439 notify_method_exit( TosState state, NotifyMethodExitMode mode) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJAssignment.java53 public void state(JFormatter f) { method in class:JAssignment
H A DJCase.java73 public void state(JFormatter f) { method in class:JCase
H A DJDoLoop.java36 * Test part of Do statement for determining exit state
57 public void state(JFormatter f) { method in class:JDoLoop
H A DJWhileLoop.java36 * Test part of While statement for determining exit state
61 public void state(JFormatter f) { method in class:JWhileLoop
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DNGCCEventReceiver.java26 package com.sun.xml.internal.xsom.impl.parser.state;
/openjdk7/jdk/test/java/awt/Frame/MaximizedToIconified/
H A DMaximizedToIconified.java39 * states in the newState of the state change event.
54 private static void checkState(Frame f, int state) { argument
55 f.setExtendedState(state);
58 System.out.println("state = " + state + "; getExtendedState() = " + f.getExtendedState());
66 if (f.getExtendedState() != state) {
67 MaximizedToIconified.fail("getExtendedState() != " + state + " as expected.");
95 for (int state: states) {
96 if (myKit.isFrameStateSupported(state)) {
97 checkState(f, state);
[all...]
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DThaiShaping.h105 inline static StateTransition getTransition(le_uint8 state, le_uint8 currClass);
110 static le_uint8 getNextState(LEUnicode ch, le_uint8 state, le_int32 inputIndex, le_uint8 glyphSet, LEUnicode errorChar,
125 inline ThaiShaping::StateTransition ThaiShaping::getTransition(le_uint8 state, le_uint8 currClass) argument
127 return thaiStateTable[state][currClass];
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSContextImpl.java95 // private flags for the context state
468 public void requestMutualAuth(boolean state) throws GSSException { argument
470 reqMutualAuthState = state;
473 public void requestReplayDet(boolean state) throws GSSException { argument
475 reqReplayDetState = state;
478 public void requestSequenceDet(boolean state) throws GSSException { argument
480 reqSequenceDetState = state;
483 public void requestCredDeleg(boolean state) throws GSSException { argument
485 reqCredDelegState = state;
488 public void requestAnonymity(boolean state) throw argument
493 requestConf(boolean state) argument
498 requestInteg(boolean state) argument
649 requestDelegPolicy(boolean state) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingAccessor.java71 Object state, boolean forDrop);
70 setDropLocation(JTextComponent textComp, TransferHandler.DropLocation location, Object state, boolean forDrop) argument
/openjdk7/jdk/src/share/classes/java/text/
H A DRuleBasedBreakIterator.java230 * The state number of the starting state
235 * The state-transition value indicating "stop"
270 * The table of state transitions used for forward iteration
275 * The table of state transitions used to sync up the iterator with the
281 * A list of flags indicating which states in the state table are accepting
287 * A list of flags indicating which states in the state table are
300 * the state tables)
847 * Changing the state of this iterator can have undefined consequences. If
853 // function is called while we're in that state, w
1035 lookupState(int state, int category) argument
1043 lookupBackwardState(int state, int category) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DUIStyle.java126 @XmlElement(name="state")
131 @XmlElement(name="state")
136 @XmlElement(name="state")
154 for (UIState state: backgroundStates) {
155 state.getStyle().setParentStyle(this.style);
157 for (UIState state: foregroundStates) {
158 state.getStyle().setParentStyle(this.style);
160 for (UIState state: borderStates) {
161 state.getStyle().setParentStyle(this.style);
233 //what we have here, gentlemen, is a bona-fide custom state
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSDFACM.java71 * each state's per-input symbol transition table entry. This is part
93 * This is an array of booleans, one per state (there are
95 * state is a final state.
135 * the new state given that input for the first dimension's start
136 * state.
251 * check whether the given state is one of the final states
253 * @param state the state to check
255 * @return whether it's a final state
257 isFinalState(int state) argument
276 oneTransition(QName curElem, int[] state, SubstitutionGroupHandler subGroupHandler) argument
411 findMatchingDecl(QName curElem, int[] state, SubstitutionGroupHandler subGroupHandler, int elemIndex) argument
469 endContentModel(int[] state) argument
1172 whatCanGoHere(int[] state) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/grammars/
H A DXMLGrammarLoader.java52 * Returns the state of a feature.
62 * Sets the state of a feature.
65 * @param state The state of the feature.
71 boolean state) throws XMLConfigurationException;
81 * Returns the state of a property.
91 * Sets the state of a property.
94 * @param state The state of the property.
100 Object state) throw
70 setFeature(String featureId, boolean state) argument
99 setProperty(String propertyId, Object state) argument
[all...]
/openjdk7/jaxp/src/javax/xml/parsers/
H A DSAXParserFactory.java324 /* <p>Get current state of canonicalization.</p>
326 * @return current state canonicalization control
363 * @param state of canonicalization
366 public void setCanonicalization(boolean state) {
367 canonicalState = state;
429 * <p>Set state of XInclude processing.</p>
437 * @param state Set XInclude processing to <code>true</code> or
445 public void setXIncludeAware(final boolean state) { argument
446 if (state) {
454 * <p>Get state o
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingWorker.java103 * properties available: {@code state} and {@code progress}.
120 * {@code state} property change to {@code StateValue.STARTED}. After the
123 * about the {@code state} property change to {@code StateValue.DONE}.
238 * current state.
240 private volatile StateValue state; field in class:SwingWorker
266 * Values for the {@code state} bound property.
271 * Initial {@code SwingWorker} state.
308 state = StateValue.PENDING;
586 * if (&quot;state&quot;.equals(event.getPropertyName())
704 * Returns the {@code SwingWorker} state boun
724 setState(StateValue state) argument
[all...]

Completed in 156 milliseconds

1234567891011>>