Searched refs:STATE (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DEnableBlockLayoutAction.java38 public static final String STATE = "state"; field in class:EnableBlockLayoutAction
43 putValue(STATE, true);
49 this.putValue(STATE, state);
H A DPredSuccAction.java38 public static final String STATE = "state"; field in class:PredSuccAction
43 putValue(STATE, true);
49 this.putValue(STATE, state);
H A DOverviewAction.java38 public static final String STATE = "state"; field in class:OverviewAction
51 this.putValue(STATE, b);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEParser.java60 private enum STATE {START_MESSAGE, SKIP_PREAMBLE, START_PART, HEADERS, BODY, END_PART, END_MESSAGE} enum in class:MIMEParser
61 private STATE state = STATE.START_MESSAGE;
122 LOGGER.finer("MIMEParser state="+STATE.START_MESSAGE);
123 state = STATE.SKIP_PREAMBLE;
127 LOGGER.finer("MIMEParser state="+STATE.SKIP_PREAMBLE);
131 LOGGER.finer("MIMEParser state="+STATE.START_PART);
132 state = STATE.HEADERS;
136 LOGGER.finer("MIMEParser state="+STATE.HEADERS);
138 state = STATE
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp66 #define STATE(field_name) (Address(state, byte_offset_of(BytecodeInterpreter, field_name))) macro
163 __ movptr(rax, STATE(_oop_temp));
270 __ movptr(rax, STATE(_locals)); // pop parameters get new stack value
280 __ movptr(rdx, STATE(_stack));
281 __ movptr(rax, STATE(_locals)); // address for result
292 __ movptr(rax, STATE(_locals)); // address for result
293 __ movptr(rcx, STATE(_stack));
301 __ movptr(rdx, STATE(_stack));
302 __ movptr(rax, STATE(_locals)); // address for result
334 __ movptr(rdx, STATE(_stac
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DcppInterpreter_sparc.cpp67 #define STATE(field_name) Lstate, in_bytes(byte_offset_of(BytecodeInterpreter, field_name)) macro
89 __ stf(FloatRegisterImpl::D, F0, STATE(_native_fresult));
91 __ stx(O0, STATE(_native_lresult));
93 __ std(O0, STATE(_native_lresult));
100 __ ldf(FloatRegisterImpl::D, STATE(_native_fresult), F0);
102 __ ldx(STATE(_native_lresult), O0);
104 __ ldd(STATE(_native_lresult), O0);
133 __ ld_ptr(STATE(_oop_temp), Itos_i);
409 __ ld_ptr(STATE(_method), G3_scratch);
682 __ ld_ptr(STATE(_metho
[all...]
H A Dinterp_masm_sparc.cpp60 #ifndef STATE
61 #define STATE(field_name) Lstate, in_bytes(byte_offset_of(BytecodeInterpreter, field_name)) macro
62 #endif // STATE
2377 stf(FloatRegisterImpl::D, F0, STATE(_native_fresult));
2379 stx(O0, STATE(_native_lresult));
2381 std(O0, STATE(_native_lresult));
2399 ldf(FloatRegisterImpl::D, STATE(_native_fresult), F0);
2401 ldx(STATE(_native_lresult), O0);
2403 ldd(STATE(_native_lresult), O0);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DEditorTopComponent.java433 return (Boolean) predSuccAction.getValue(PredSuccAction.STATE);
470 boolean b = (Boolean) predSuccAction.getValue(PredSuccAction.STATE);
473 boolean b = (Boolean) overviewAction.getValue(OverviewAction.STATE);
480 boolean b = (Boolean) blockLayoutAction.getValue(EnableBlockLayoutAction.STATE);

Completed in 555 milliseconds