Home | History | Annotate | Download | only in views

Lines Matching defs:parent

170         SkView* parent = view->fParent;
171 if (parent == NULL) {
178 view = parent;
258 SkView* child, *parent;
262 parent = focus;
270 while (child != parent->fFirstChild)
278 child = parent->fNextSibling;
279 parent = parent->fParent;
280 } while (parent != NULL);
284 parent = focus->fParent;
285 if (parent == NULL) // we're the root
290 while (parent)
292 while (child != parent->fFirstChild)
298 if (parent->acceptFocus())
299 return parent;
301 child = parent;
302 parent = parent->fParent;
553 SkView* parent = fParent;
555 if (parent) {
557 parent->invokeLayout();
712 SkView* parent = fParent;
714 while (parent) {
715 if (parent->doEvent(evt)) {
716 return parent;
718 parent = parent->fParent;
724 SkView* parent = fParent;
726 parent) {
727 if (parent->doQuery(evt)) {
728 return parent;
730 parent = parent->fParent;
738 SkView::F2BIter::F2BIter(const SkView* parent) {
739 fFirstChild = parent ? parent->fFirstChild : NULL;
756 SkView::B2FIter::B2FIter(const SkView* parent) {
757 fFirstChild = parent ? parent->fFirstChild : NULL;