Home | History | Annotate | Download | only in base

Lines Matching defs:depth

462   explicit NestingTest(int* depth) : depth_(depth) {
594 int depth = 100;
595 MessageLoop::current()->PostTask(FROM_HERE, new NestingTest(&depth));
597 EXPECT_EQ(depth, 0);
749 RecursiveTask(int depth, TaskList* order, int cookie, bool is_reentrant)
751 depth_(depth),
773 RecursiveSlowTask(int depth, TaskList* order, int cookie, bool is_reentrant)
774 : RecursiveTask(depth, order, cookie, is_reentrant) {