/external/chromium_org/ui/views/layout/ |
fill_layout.cc | 19 View* frame_view = host->child_at(0); 27 gfx::Rect rect(host->child_at(0)->GetPreferredSize()); 37 return host->child_at(0)->GetHeightForWidth(width - insets.width()) +
|
box_layout.cc | 40 View* child = host->child_at(i); 65 View* child = host->child_at(i); 89 View* child = host->child_at(i); 115 View* child = host->child_at(i); 130 View* child = host->child_at(i);
|
/external/chromium_org/ui/views/controls/ |
single_split_view.cc | 49 if (child_at(0)->visible()) 50 child_at(0)->SetBoundsRect(leading_bounds); 52 if (child_at(1)->visible()) 53 child_at(1)->SetBoundsRect(trailing_bounds); 74 View* view = child_at(i); 105 bool both_visible = child_count() > 1 && child_at(0)->visible() && 106 child_at(1)->visible(); 114 bool is_leading_visible = has_children() && child_at(0)->visible(); 115 bool is_trailing_visible = child_count() > 1 && child_at(1)->visible(); 173 gfx::Size min = child_at(0)->GetMinimumSize() [all...] |
styled_label_unittest.cc | 63 styled()->child_at(0)->GetClassName()); 65 static_cast<Label*>(styled()->child_at(0))->text()); 77 styled()->child_at(0)->GetClassName()); 79 static_cast<Label*>(styled()->child_at(0))->text()); 94 styled()->child_at(0)->GetClassName()); 96 static_cast<Label*>(styled()->child_at(0))->text()); 116 EXPECT_EQ(3, styled()->child_at(0)->bounds().x()); 117 EXPECT_EQ(3, styled()->child_at(0)->bounds().y()); 119 styled()->child_at(1)->bounds().bottom()); 156 EXPECT_EQ(0, styled()->child_at(0)->bounds().x()) [all...] |
single_split_view_unittest.cc | 19 const views::View* leading = split.child_at(0); 20 const views::View* trailing = split.child_at(1); 130 split.child_at(0)->SetVisible(false); 133 EXPECT_EQ(split.size(), split.child_at(1)->size()); 135 split.child_at(0)->SetVisible(true); 136 split.child_at(1)->SetVisible(false); 139 EXPECT_EQ(split.size(), split.child_at(0)->size());
|
/external/chromium_org/ui/events/ |
event_processor_unittest.cc | 46 EXPECT_TRUE(root()->child_at(0)->DidReceiveEvent(ET_MOUSE_MOVED)); 49 root()->RemoveChild(root()->child_at(0)); 123 ASSERT_EQ(1u, root()->child_at(0)->child_count()); 124 ASSERT_EQ(1u, root()->child_at(0)->child_at(0)->child_count()); 126 TestEventTarget* parent_r = root()->child_at(0); 127 TestEventTarget* child_r = parent_r->child_at(0); 128 TestEventTarget* grandchild_r = child_r->child_at(0);
|
/external/chromium_org/ash/system/ |
status_area_widget_delegate.cc | 47 return child_at(0); 101 views::View* child = child_at(c); 113 views::View* child = child_at(c); 129 views::View* child = child_at(c);
|
/external/chromium_org/chrome/browser/ui/views/infobars/ |
infobar_container_view.cc | 30 size.SetToMax(gfx::Size(child_at(i)->GetPreferredSize().width(), 0)); 42 InfoBarView* child = static_cast<InfoBarView*>(child_at(i));
|
/external/chromium_org/chrome/browser/ui/views/frame/ |
top_container_view.cc | 24 views::View* child = child_at(i);
|
/external/chromium_org/ui/views/examples/ |
throbber_example.cc | 33 View* child = child_at(0);
|
/external/chromium_org/ui/views/ |
debug_utils.cc | 32 PrintViewHierarchyImp(view->child_at(i), indent + 2, out); 51 PrintFocusHierarchyImp(view->child_at(0), indent + 2, out);
|
/external/chromium_org/ui/app_list/views/ |
page_switcher.cc | 115 return static_cast<PageSwitcherButton*>(buttons->child_at(index)); 142 const views::View* button = buttons_->child_at(i); 156 static_cast<PageSwitcherButton*>(buttons_->child_at(page)); 163 static_cast<PageSwitcherButton*>(buttons_->child_at(i)); 214 static_cast<PageSwitcherButton*>(buttons_->child_at(i)); 222 if (sender == static_cast<views::Button*>(buttons_->child_at(i))) {
|
search_result_list_view.cc | 80 return static_cast<const SearchResultView*>(child_at(selected_index_)) == 85 if (selected_index_ >= 0 && child_at(selected_index_)->OnKeyPressed(event)) 109 return static_cast<SearchResultView*>(child_at(index));
|
search_result_actions_view.cc | 53 child_at(selected_action_)->NotifyAccessibilityEvent( 91 const gfx::Rect active_action_bounds(child_at(selected_action_)->bounds());
|
/external/chromium_org/content/browser/ |
site_per_process_browsertest.cc | 456 EXPECT_EQ(0U, root->child_at(0)->child_count()); 457 EXPECT_EQ(0U, root->child_at(1)->child_count()); 481 ASSERT_EQ(2UL, root->child_at(0)->child_count()); 482 EXPECT_STREQ("1-1-name", root->child_at(0)->frame_name().c_str()); 485 ASSERT_EQ(2UL, root->child_at(2)->child_count()); 486 EXPECT_EQ(1UL, root->child_at(2)->child_at(1)->child_count()); 487 EXPECT_EQ(0UL, root->child_at(2)->child_at(1)->child_at(0)->child_count()) [all...] |
/external/chromium_org/chrome/browser/ui/views/bookmarks/ |
bookmark_bar_instructions_view.cc | 54 views::View* view = child_at(i); 75 views::View* view = child_at(i);
|
/external/chromium_org/chrome/browser/ui/views/omnibox/ |
touch_omnibox_popup_contents_view.cc | 113 View* v = child_at(i); 114 if (child_at(i)->visible())
|
/external/chromium_org/content/browser/frame_host/ |
frame_tree_node.h | 94 FrameTreeNode* child_at(size_t index) const { function in class:content::FrameTreeNode
|
/external/chromium_org/ui/events/test/ |
test_event_target.h | 30 TestEventTarget* child_at(int index) { return children_[index]; } function in class:ui::test::TestEventTarget
|
/external/chromium_org/ui/views/focus/ |
focus_search.cc | 40 starting_view = reverse ? root_->child_at(root_->child_count() - 1) : 41 root_->child_at(0); 163 View* v = FindNextFocusableViewImpl(starting_view->child_at(0), 229 starting_view->child_at(starting_view->child_count() - 1);
|
/external/chromium_org/ui/views/controls/tabbed_pane/ |
tabbed_pane.cc | 184 const gfx::Size child_size = child_at(i)->GetPreferredSize(); 195 gfx::Size ps = child_at(i)->GetPreferredSize(); 196 child_at(i)->SetBounds(x, 0, ps.width(), ps.height()); 197 x = child_at(i)->bounds().right(); 310 size.SetToMax(contents_->child_at(i)->GetPreferredSize()); 316 return static_cast<Tab*>(tab_strip_->child_at(index)); 325 contents_->child_at(i)->SetSize(contents_->size());
|
/external/chromium_org/ui/message_center/views/ |
message_center_view.cc | 284 views::View* child = child_at(i); 303 views::View* child = child_at(GetActualIndex(i)); 320 views::View* child = child_at(actual_index); 338 views::View* child = child_at(i); 355 views::View* child = child_at(i); 369 if (!child_at(i)->layer()) 370 child_at(i)->Paint(canvas); 378 if (child_at(i)->layer()) 379 parent_layer->StackAtBottom(child_at(i)->layer()); 409 views::View* child = child_at(i) [all...] |
/external/chromium_org/ash/shelf/ |
shelf_widget.cc | 458 child_at(i)->SetBounds(child_at(i)->x(), child_at(i)->y(), 459 child_at(i)->width(), height()); 461 child_at(i)->SetBounds(child_at(i)->x(), child_at(i)->y(), 462 width(), child_at(i)->height());
|
/external/chromium_org/ash/system/tray/ |
throbber_view.cc | 66 View* child = child_at(0);
|
tray_popup_label_button_border.cc | 80 const views::View* child = view.parent()->child_at(i);
|