HomeSort by relevance Sort by last modified time
    Searched full:nesting_level_ (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/
message_pump_mac.h 68 int nesting_level() const { return nesting_level_; }
133 // nesting_level_. Associated with enter_exit_observer_.
137 // Called by EnterExitObserver after performing maintenance on nesting_level_.
179 int nesting_level_; member in class:base::MessagePumpCFRunLoopBase
181 // The recursion depth (calculated in the same way as nesting_level_) of the
212 // (innermost_quittable_) but some other CFRunLoopRun loop (nesting_level_)
message_pump_mac.mm 51 nesting_level_(0),
187 // nesting_level_ will be incremented in EnterExitRunLoop, so set
190 run_nesting_level_ = nesting_level_ + 1;
423 if (deepest_nesting_level_ > nesting_level_) {
424 deepest_nesting_level_ = nesting_level_;
470 ++self->nesting_level_;
471 if (self->nesting_level_ > self->deepest_nesting_level_) {
472 self->deepest_nesting_level_ = self->nesting_level_;
487 // MaybeScheduleNestingDeferredWork consults self->nesting_level_
494 --self->nesting_level_;
    [all...]

Completed in 41 milliseconds