Lines Matching full:child
175 SkView* attachChildToFront(SkView* child);
176 /** Attach the child view to this view, and increment the child's reference count. The child view is added
177 such that it will be drawn before all other child views.
178 The child view parameter is returned.
180 SkView* attachChildToBack(SkView* child);
185 /** Attach the child view to this view, and increment the child's reference count. The child view is added
186 such that it will be drawn after all other child views.
187 The child view parameter is returned.
189 /** Detach all child views from this view. */
204 call to next() returns the front-most child view. When
205 next() returns null, there are no more child views.
219 call to next() returns the back-most child view. When
220 next() returns null, there are no more child views.
311 //! called right before this child's onDraw is called
312 virtual void beforeChild(SkView* child, SkCanvas* canvas) {}
313 //! called right after this child's onDraw is called
314 virtual void afterChild(SkView* child, SkCanvas* canvas) {}