Searched defs:coalesce (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DTimer.java158 // If coalesce is true, only allow one Runnable to be queued on the
168 // It will be set to false after notifying the listeners (if coalesce is
173 private volatile boolean repeats = true, coalesce = true; field in class:Timer
247 if (coalesce) {
490 * coalesce events by default.
495 boolean old = coalesce;
496 coalesce = flag;
497 if (!old && coalesce) {
513 return coalesce;
610 if (notify.compareAndSet(false, true) || !coalesce) {
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcoalesce.cpp30 #include "opto/coalesce.hpp"
285 coalesce( _phc._blks[i] );
536 //------------------------------coalesce---------------------------------------
539 // The following coalesce pass represents a single round of aggressive
540 // pessimistic coalesce. "Aggressive" means no attempt to preserve
559 void PhaseAggressiveCoalesce::coalesce( Block *b ) { function in class:PhaseAggressiveCoalesce
562 // live-ranges. If I fail to coalesce, I'll have to insert a copy to line
654 assert(!lrgs(lr1)._fat_proj, "cannot coalesce fat_proj");
655 assert(!lrgs(lr2)._fat_proj, "cannot coalesce fat_proj");
663 assert( b2->num_preds() == 2, "cannot double coalesce acros
902 void PhaseConservativeCoalesce::coalesce( Block *b ) { function in class:PhaseConservativeCoalesce
[all...]

Completed in 25 milliseconds