Searched refs:child_view (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/ash/wm/
H A Dimmersive_fullscreen_controller_unittest.cc800 views::View* child_view = new views::View(); local
801 child_view->SetBounds(0, 0, 10, 10);
802 child_view->SetFocusable(true);
803 top_container()->AddChildView(child_view);
814 // |child_view| has focus or the mouse is hovered above the top-of-window
817 child_view->RequestFocus();
820 child_view->RequestFocus();
830 child_view->RequestFocus();
835 // 3) Test that a loss of focus of |child_view| to |unrelated_view|
837 child_view
912 views::View* child_view = new views::View(); local
[all...]
/external/chromium_org/chrome/test/base/
H A Dview_event_test_base.cc38 View* child_view = child_at(0); variable
39 child_view->SetBounds(0, 0, width(), height());
/external/chromium_org/ui/views/accessibility/
H A Dnative_view_accessibility_win.cc291 View* child_view = view_->child_at(i); local
292 if (!child_view->visible())
296 view_->ConvertPointToTarget(view_, child_view, &point_in_child_coords);
297 if (child_view->HitTestPoint(point_in_child_coords)) {
298 hit_child_view = child_view;
484 View* child_view = NULL; local
490 child_view = view_->child_at(child_id_as_index);
494 child_view = child_widget->GetRootView();
516 child_view = view_storage->RetrieveView(view_storage_id);
525 if (!child_view) {
[all...]
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dstacked_tab_strip_layout_unittest.cc65 views::View* child_view = new views::View; local
66 view_.AddChildView(child_view);
67 view_model_.Add(child_view, index);
/external/chromium_org/chrome/browser/ui/views/
H A Dmenu_view_drag_and_drop_test.cc379 views::View* child_view = first_view->child_at(0); local
380 ASSERT_EQ(child_view, target_view());
/external/chromium_org/ui/views/
H A Dview_unittest.cc1870 TestView* child_view = new TestView; local
1874 child_view->SetBoundsRect(gfx::Rect(10, 10, 20, 20));
1875 top_view.AddChildView(child_view);
1878 child_view->SetBoundsRect(gfx::Rect(30, 30, 20, 20));
1940 View* child_view = new View; local
1941 child_view->SetBoundsRect(gfx::Rect(0, 0, 20, 20));
1942 parent_view->AddChildView(child_view);
1944 EXPECT_EQ(child_view->bounds(), parent_view->scheduled_paint_rects_.front());
1947 parent_view->RemoveChildView(child_view);
1948 scoped_ptr<View> child_deleter(child_view);
[all...]

Completed in 289 milliseconds