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

1234567891011>>

/openjdk10/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;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/
H A DLoopSpilling.java36 void test(int[] state) { argument
38 int a1 = state[0];
39 int b1 = state[1];
40 int c1 = state[2];
41 int d1 = state[3];
42 int e1 = state[4];
43 int f1 = state[5];
44 int g1 = state[6];
45 int h1 = state[7];
48 int a2 = state[
[all...]
/openjdk10/jdk/src/java.base/share/native/libzip/zlib/
H A Dgzlib.c98 /* Reset gzip file state */
99 local void gz_reset(state)
100 gz_statep state;
102 state->x.have = 0; /* no output data available */
103 if (state->mode == GZ_READ) { /* for reading ... */
104 state->eof = 0; /* not at end of file */
105 state->past = 0; /* have not read past end yet */
106 state->how = LOOK; /* look for gzip header */
108 state->seek = 0; /* no seek request pending */
109 gz_error(state, Z_O
120 gz_statep state; local
344 gz_statep state; local
370 gz_statep state; local
397 gz_statep state; local
482 gz_statep state; local
510 gz_statep state; local
542 gz_statep state; local
560 gz_statep state; local
580 gz_statep state; local
[all...]
H A Dgzwrite.c38 /* Initialize state for writing a gzip file. Mark initialization by setting
39 state->size to non-zero. Return -1 on a memory allocation failure, or 0 on
41 local int gz_init(state)
42 gz_statep state;
45 z_streamp strm = &(state->strm);
48 state->in = (unsigned char *)malloc(state->want << 1);
49 if (state->in == NULL) {
50 gz_error(state, Z_MEM_ERROR, "out of memory");
54 /* only need output buffer and deflate state i
275 gz_statep state; local
305 gz_statep state; local
334 gz_statep state; local
382 gz_statep state; local
408 gz_statep state; local
498 gz_statep state; local
581 gz_statep state; local
614 gz_statep state; local
655 gz_statep state; local
[all...]
H A Dgzread.c42 state->fd, and update state->eof, state->err, and state->msg as appropriate.
45 local int gz_load(state, buf, len, have)
46 gz_statep state;
59 ret = read(state->fd, buf + *have, get);
65 gz_error(state, Z_ERRNO, zstrerror());
69 state->eof = 1;
80 local int gz_avail(state)
404 gz_statep state; local
442 gz_statep state; local
476 gz_statep state; local
511 gz_statep state; local
575 gz_statep state; local
634 gz_statep state; local
655 gz_statep state; local
[all...]
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
120 local void fixedtables OF((struct inflate_state FAR *state));
132 struct inflate_state FAR *state; local
136 state = (struct inflate_state FAR *)strm->state;
137 if (state == Z_NULL || state->strm != strm ||
138 state
146 struct inflate_state FAR *state; local
171 struct inflate_state FAR *state; local
186 struct inflate_state FAR *state; local
226 struct inflate_state FAR *state; local
276 struct inflate_state FAR *state; local
369 struct inflate_state state; local
425 struct inflate_state FAR *state; local
650 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
82 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
84 if (state == Z_NULL) return Z_MEM_ERROR;
86 strm->state = (struct internal_state FAR *)state;
87 state->dmax = 32768U;
88 state->wbits = (uInt)windowBits;
89 state->wsize = 1U << windowBits;
90 state
281 struct inflate_state FAR *state; local
[all...]
/openjdk10/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...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/ast/
H A DStateNode.java26 protected int state; field in class:StateNode
30 return "\n state: " + stateToString();
52 return (state & NST_MIN_FIXED) != 0;
56 state |= NST_MIN_FIXED;
60 return (state & NST_MAX_FIXED) != 0;
64 state |= NST_MAX_FIXED;
68 return (state & NST_CLEN_FIXED) != 0;
72 state |= NST_CLEN_FIXED;
76 return (state & NST_MARK1) != 0;
80 state |
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DStateProcedure.java28 void doState(LIRFrameState state); argument
31 default void doState(LIRInstruction instruction, LIRFrameState state) { argument
32 doState(state);
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/im/
H A DInputMethodHighlight.java35 * at the abstract level it specifies the conversion state and whether the
45 * {@code state}, and {@code variation}.
49 * {@code state} 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
194 private int state; field in class:InputMethodHighlight
[all...]
/openjdk10/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...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/
H A DJStatement.java36 public void state(JFormatter f); method in interface:JStatement
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DKey.java47 private final JShell state; field in class:Key
49 Key(JShell state) { argument
50 this.index = state.nextKeyIndex();
51 this.state = state;
72 JShell state() { return state; } method in class:Key
83 PersistentKey(JShell state, String name) { argument
84 super(state);
100 DeclarationKey(JShell state, Strin argument
110 TypeDeclKey(JShell state, String name) argument
129 MethodKey(JShell state, String name, String parameterTypes) argument
157 VarKey(JShell state, String name) argument
176 ImportKey(JShell state, String name,SubKind snippetKind) argument
206 UniqueKey(JShell state) argument
217 StatementKey(JShell state) argument
240 ExpressionKey(JShell state, String name, String typeName) argument
280 ErroneousKey(JShell state) argument
[all...]
/openjdk10/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...]
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DEnableBlockLayoutAction.java38 private boolean state; field in class:EnableBlockLayoutAction
39 public static final String STATE = "state";
42 state = false;
44 putValue(STATE, state);
49 this.state = !state;
50 this.putValue(STATE, state);
/openjdk10/jaxws/src/java.xml.bind/share/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.setLoader(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.setTarget(null);
49 state.setLoader(this);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/synth/
H A DSynthContext.java45 private int state; field in class:SynthContext
47 static SynthContext getContext(JComponent c, SynthStyle style, int state) { argument
48 return getContext(c, SynthLookAndFeel.getRegion(c), style, state);
53 int state) {
58 context.state = state;
73 * @param state State of the component as defined in SynthConstants.
77 int state) {
86 this.state = state;
51 getContext(JComponent component, Region region, SynthStyle style, int state) argument
76 SynthContext(JComponent component, Region region, SynthStyle style, int state) argument
128 setComponentState(int state) argument
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/libs/test/auctionportal/
H A DMyErrorHandler.java29 * ErrorHandler for error handling. Set state if any method in error, warning
34 * Enumeration for ErrorHandler's state.
39 * Set state as normal by default.
41 private volatile STATE state = STATE.NORMAL; field in class:MyErrorHandler
49 * Save exception and set state to ERROR.
54 state = STATE.ERROR;
59 * Save exception and set state to FATAL.
64 state = STATE.FATAL;
69 * Save exception and set state to WARNING.
74 state
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/undo/
H A DStateEditable.java33 * their state undone/redone by a StateEdit.
45 * state into <EM>state</EM>.
47 * @param state Hashtable object to store the state
49 public void storeState(Hashtable<Object,Object> state); argument
53 * state out of <EM>state</EM>.
55 * @param state Hashtable object to restore the state fro
57 restoreState(Hashtable<?,?> state) argument
[all...]
/openjdk10/jdk/src/java.desktop/unix/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 State} 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
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/peer/
H A DCheckboxMenuItemPeer.java41 * Sets the state of the checkbox to be checked {@code true} or
44 * @param state the state to set on the checkbox
48 void setState(boolean state); argument
/openjdk10/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
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.micro.benchmarks/src/micro/benchmarks/
H A DStringBenchmark.java53 public int indexOfChar(BenchState state) { argument
54 return state.lorem.indexOf(state.ch1);
59 public int indexOfCharNotFound(BenchState state) { argument
60 return state.lorem.indexOf(state.ch2);
65 public int indexOfString(BenchState state) { argument
66 return state.lorem.indexOf(state.s1);
71 public int indexOfStringNotFound(BenchState state) { argument
[all...]

Completed in 156 milliseconds

1234567891011>>