Lines Matching defs:View

23     View* receiver,
40 View* start_at,
43 for (View* current = start_at; current; current = current->parent())
48 View* start_at,
52 View::Children::const_iterator it = start_at->children().begin();
69 ScopedTreeNotifier(View* target, View* old_parent, View* new_parent) {
85 void RemoveChildImpl(View* child, View::Children* children) {
86 View::Children::iterator it =
96 ScopedOrderChangedNotifier(View* view,
97 View* relative_view,
113 View* view_;
114 View* relative_view_;
121 bool ReorderImpl(View::Children* children,
122 View* view,
123 View* relative,
152 ScopedSetBoundsNotifier(View* view,
169 View* view_;
177 bool OwnsView(ViewManager* manager, View* view) {
185 // View, public:
188 View* View::Create(ViewManager* view_manager) {
189 View* view = new View(view_manager);
194 void View::Destroy() {
201 View* child = children_.front();
214 void View::SetBounds(const gfx::Rect& bounds) {
223 void View::SetVisible(bool value) {
228 void View::AddObserver(ViewObserver* observer) {
232 void View::RemoveObserver(ViewObserver* observer) {
236 void View::AddChild(View* child) {
246 void View::RemoveChild(View* child) {
258 void View::MoveToFront() {
262 void View::MoveToBack() {
266 void View::Reorder(View* relative, OrderDirection direction) {
276 bool View::Contains(View* child) const {
279 for (View* p = child->parent(); p; p = p->parent()) {
286 View* View::GetChildById(Id id) {
292 View* view = (*it)->GetChildById(id);
299 void View::SetSurfaceId(SurfaceIdPtr id) {
305 void View::SetContents(const SkBitmap& contents) {
314 void View::SetColor(SkColor color) {
323 void View::SetFocus() {
328 void View::Embed(const String& url) {
333 View::Embed(const String& url,
348 // View, protected:
350 View::View()
355 View::~View() {
367 // View, private:
369 View::View(ViewManager* manager)
374 void View::LocalDestroy() {
378 void View::LocalAddChild(View* child) {
386 void View::LocalRemoveChild(View* child) {
392 bool View::LocalReorder(View* relative, OrderDirection direction) {
396 void View::LocalSetBounds(const gfx::Rect& old_bounds,
403 void View::CreateBitmapUploader() {