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

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DLineEvent.java54 * <code>START</code>, or <code>STOP</code>).
63 * data lines, such as <code>START</code> and <code>STOP</code>. For
76 * @param type the event type (<code>OPEN</code>, <code>CLOSE</code>, <code>START</code>, or <code>STOP</code>)
103 * {@link Type#START}, or {@link Type#STOP})
117 * data lines, such as <code>START</code> and <code>STOP</code>. For
153 * Static instances are provided for the common types (OPEN, CLOSE, START, and STOP).
228 * @see #STOP
241 public static final Type STOP = new Type("Stop"); field in class:LineEvent.Type
263 * @see #STOP
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DShortMessage.java118 public static final int STOP = 0xFC; //252 field in class:ShortMessage
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DmethodHandles_sparc.cpp34 #define STOP(error) stop(error) macro
37 #define STOP(error) block_comment(error); __ stop(error) macro
96 __ STOP(error_message);
115 __ STOP(buf);
184 __ STOP("receiver not on stack");
229 __ STOP("bad methodOop::intrinsic_id");
349 __ STOP("receiver class disagrees with MemberName.clazz");
397 __ STOP("no virtual index");
427 __ STOP("invalid vtable index for MH.invokeInterface");
H A Dassembler_sparc.cpp47 #define STOP(error) stop(error) macro
50 #define STOP(error) block_comment(error); stop(error) macro
979 STOP("last_Java_pc not zeroed before leaving Java");
988 STOP("flags not zeroed before leaving Java");
1008 STOP("Stack Not Biased in set_last_Java_frame");
2016 if (ShowMessageBoxOnError) { STOP(b); }
3922 STOP("assert(top >= start)");
3930 STOP("assert(top <= end)");
3936 STOP("assert(aligned)");
3985 STOP("ede
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DmethodHandles_x86.cpp35 #define STOP(error) stop(error) macro
38 #define STOP(error) block_comment(error); __ stop(error) macro
92 __ STOP(error_message);
112 __ STOP(buf);
182 __ STOP("receiver not on stack");
229 __ STOP("bad methodOop::intrinsic_id");
357 __ STOP("receiver class disagrees with MemberName.clazz");
406 __ STOP("no virtual index");
437 __ STOP("invalid vtable index for MH.invokeInterface");
H A Dassembler_x86.cpp46 #define STOP(error) stop(error) macro
49 #define STOP(error) block_comment(error); stop(error) macro
7053 STOP("MacroAssembler::call_VM_base: rdi not callee saved?");
7793 STOP("integer indefinite value shouldn't be seen here");
7803 STOP("integer indefinite value shouldn't be seen here");
9006 STOP("assert(t1 != tlab size)");
9702 STOP(buf);
9794 STOP("assert(top >= start)");
9801 STOP("assert(top <= end)");
10308 STOP(ms
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DThreadPoolExecutor.java343 * STOP: Don't accept new tasks, don't process queued tasks,
356 * (RUNNING or SHUTDOWN) -> STOP
360 * STOP -> TIDYING
382 private static final int STOP = 1 << COUNT_BITS; field in class:ThreadPoolExecutor
665 * @param targetState the desired state, either SHUTDOWN or STOP
679 * and queue empty) or (STOP and pool empty). If otherwise
1009 if (runStateLessThan(c, STOP)) {
1046 if (rs >= SHUTDOWN && (rs >= STOP || workQueue.isEmpty())) {
1136 if ((runStateAtLeast(ctl.get(), STOP) ||
1138 runStateAtLeast(ctl.get(), STOP)))
[all...]

Completed in 2788 milliseconds