Home | History | Annotate | Download | only in src

Lines Matching refs:children_

158   while (!children_.empty()) {
159 View* child = children_.front();
163 DCHECK(std::find(children_.begin(), children_.end(), child) ==
164 children_.end());
231 RemoveChildImpl(child, &child->parent_->children_);
232 children_.push_back(child);
239 RemoveChildImpl(child, &children_);
251 if (children_.size() <= 1 || child == children_.back())
253 StackChildAbove(child, children_.back());
257 if (children_.size() <= 1 || child == children_.front())
259 StackChildBelow(child, children_.front());
263 StackChildRelativeTo(this, &children_, child, other, STACK_ABOVE);
267 StackChildRelativeTo(this, &children_, child, other, STACK_BELOW);