Searched refs:isLive (Results 1 - 11 of 11) sorted by relevance

/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/
H A DLocalVariableConversion.java96 public boolean isLive() { method in class:LocalVariableConversion
101 * Returns true if this conversion {@link #isLive()}, or if any of its {@link #getNext()} conversions are live.
105 return isLive() || isAnyLive(next);
137 if(isLive()) {
154 if(isLive()) {
/openjdk9/jdk/src/java.base/share/classes/java/lang/
H A DClassValue.java308 boolean isLive() { return classValue.version() == this; } method in class:ClassValue.Version
343 boolean isLive() { method in class:ClassValue.Entry
346 if (v.isLive()) return true;
575 if (!e.isLive() && pos2 < 0) pos2 = i;
614 if (e != null && e.isLive()) {
629 if (e == null || e.isLive())
654 if (!e2.isLive()) continue; // Doomed anyway.
747 else if (e2.isLive()) return e2;
/openjdk9/jdk/src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/
H A DSession.java81 boolean isLive(long currentTime) { method in class:Session
H A DSessionManager.java279 if (oldestSession == null || oldestSession.isLive(time) ||
/openjdk9/jdk/test/java/lang/management/ThreadMXBean/
H A DAllThreadIds.java347 private static boolean isLive(int i) { method in class:AllThreadIds
364 while (isLive(id)) {
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeState.java132 public boolean isLive() { return ((_state & live_bits_mask) != 0); } method in class:CellTypeState
/openjdk9/hotspot/src/share/vm/gc/g1/
H A Dg1HeapVerifier.cpp210 VerifyLivenessOopClosure isLive(_g1h, _vo);
224 o->oop_iterate_no_header(&isLive);
/openjdk9/jdk/src/java.base/share/classes/java/util/concurrent/
H A DCompletableFuture.java252 * threads nulling out fields. We also try to unlink non-isLive
255 * isLive completions from the head of stack; others may
476 abstract boolean isLive(); method in class:CompletableFuture.Completion
518 else if (p.isLive()) {
532 if (q.isLive()) {
573 final boolean isLive() { return dep != null; } method in class:CompletableFuture.UniCompletion
1149 final boolean isLive() { method in class:CompletableFuture.CoCompletion
1152 // && c.isLive()
1674 final boolean isLive() { method in class:CompletableFuture.AnyOf
1802 final boolean isLive() { retur method in class:CompletableFuture.Signaller
[all...]
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DMethodEmitter.java2489 if(next.isLive()) {
2501 if(next.isLive()) {
H A DLocalVariableTypesCalculator.java1485 return conv == null || !conv.isLive();
H A DCodeGenerator.java3382 if(conversion != null && conversion.isLive()) {

Completed in 309 milliseconds