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 77 int nesting_level() const { return nesting_level_; }
135 // nesting_level_. Associated with enter_exit_observer_.
139 // Called by EnterExitObserver after performing maintenance on nesting_level_.
169 int nesting_level_; member in class:base::MessagePumpCFRunLoopBase
171 // The recursion depth (calculated in the same way as nesting_level_) of the
201 // (innermost_quittable_) but some other CFRunLoopRun loop (nesting_level_)
message_pump_mac.mm 48 nesting_level_(0),
153 // nesting_level_ will be incremented in EnterExitRunLoop, so set
156 run_nesting_level_ = nesting_level_ + 1;
364 if (deepest_nesting_level_ > nesting_level_) {
365 deepest_nesting_level_ = nesting_level_;
411 ++self->nesting_level_;
412 if (self->nesting_level_ > self->deepest_nesting_level_) {
413 self->deepest_nesting_level_ = self->nesting_level_;
428 // MaybeScheduleNestingDeferredWork consults self->nesting_level_
435 --self->nesting_level_;
    [all...]

Completed in 857 milliseconds