Searched defs:alive (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/undo/
H A DAbstractUndoableEdit.java70 boolean alive; field in class:AbstractUndoableEdit
74 * <code>hasBeenDone</code> and <code>alive</code> to <code>true</code>.
80 alive = true;
84 * Sets <code>alive</code> to false. Note that this
94 alive = false;
116 * Returns true if this edit is <code>alive</code>
119 * @return true if this edit is <code>alive</code>
127 return alive && hasBeenDone;
148 * Returns <code>true</code> if this edit is <code>alive</code>
151 * @return <code>true</code> if this edit is <code>alive</cod
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DConnectionMultiplexer.java99 /** true if this mechanism is still alive */
100 private boolean alive = true; field in class:ConnectionMultiplexer
283 if (!alive)
317 if (!alive)
319 alive = false;
351 if (alive && !info.closed)
377 if (alive && !info.closed)
401 if (alive && !info.closed)
423 if (alive && !info.closed)
/openjdk7/hotspot/src/share/vm/opto/
H A Dchaitin.hpp181 bool alive() const { return _def != NULL; } function in class:LRG
429 // That is, if 2 live ranges are simultaneously alive but in their
437 // Force the bases of derived pointers to be alive at GC points.
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DFlow.java220 private boolean alive; field in class:Flow
492 alive = false;
521 if (tree != null && tree.getTag() == JCTree.BLOCK && !alive) {
530 if (!alive && tree != null) {
532 if (tree.getTag() != JCTree.SKIP) alive = true;
600 boolean alivePrev = alive;
704 alive = alivePrev;
747 alive = true;
750 if (alive && tree.sym.type.getReturnType().tag != VOID)
815 alive |
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.cpp136 CodeBlob* CodeCache::alive(CodeBlob *cb) { function in class:CodeCache
246 #define FOR_ALL_ALIVE_BLOBS(var) for (CodeBlob *var = alive(first()); var != NULL; var = alive(next(var)))
841 if(nm->is_alive()) { tty->print_cr(" alive"); }
H A Dnmethod.hpp182 unsigned char _state; // {alive, not_entrant, zombie, unloaded}
188 enum { alive = 0, enumerator in enum:nmethod::__anon200
395 bool is_in_use() const { return _state == alive; }
396 bool is_alive() const { return _state == alive || _state == not_entrant; }
402 // alive. It is used when an uncommon trap happens. Returns true
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp451 // Mark entry basic block as alive and all exception handlers
456 // If block is not already alive (due to multiple exception handlers to same bb), then
457 // make it alive
479 // We will also mark successors of jsr's as alive.
488 // Mark successor as alive
1012 // Mark all alive blocks
2002 bool alive = jsr_bb->is_alive(); local
2004 tty->print("pc = %d, ret -> %d alive: %s\n", bci, target_bci, alive ? "true" : "false");
2006 if (alive) jmpFc
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCode.java131 private boolean alive = true; field in class:Code
316 if (!alive) return;
328 if (!alive) return;
341 if (!alive) return;
359 if (alive) {
375 Assert.check(alive || state.stacksize == 0);
382 if (!alive) return;
393 if (!alive) return;
403 if (!alive) return;
414 if (!alive) retur
[all...]

Completed in 52 milliseconds