Home | History | Annotate | Download | only in views

Lines Matching refs:view

150     SkView*    view = this;
154 if (!view->isVisible()) {
157 if (view->isClipToBounds()) {
159 view->getLocalBounds(&bounds);
166 if (view->handleInval(rect)) {
170 SkView* parent = view->fParent;
176 rect->offset(view->fLoc.fX, view->fLoc.fY);
178 view = parent;
186 SkView* view = this;
189 if (view->onSetFocusView(fv))
191 } while ((view = view->fParent) != NULL);
198 const SkView* view = this;
200 if (view->onGetFocusView(&focus))
202 } while ((view = view->fParent) != NULL);
217 Try to give focus to this view, or its children
630 const SkView* view = this;
631 while (view)
633 matrix->preConcat(view->getLocalMatrix());
634 matrix->preTranslate(-view->fLoc.fX, -view->fLoc.fY);
635 view = view->fParent;
802 static void dumpview(const SkView* view, int level, bool recurse)
806 SkDebugf("<view");
807 show_if_nonzero(" x", view->locX());
808 show_if_nonzero(" y", view->locY());
809 show_if_nonzero(" width", view->width());
810 show_if_nonzero(" height", view->height());
814 SkView::B2FIter iter(view);
829 SkDebugf("</view>\n");