HomeSort by relevance Sort by last modified time
    Searched defs:GetHeightForWidth (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/ui/message_center/views/
proportional_image_view.cc 20 int ProportionalImageView::GetHeightForWidth(int width) const {
notification_button.cc 79 int NotificationButton::GetHeightForWidth(int width) const {
message_center_bubble.cc 25 virtual int GetHeightForWidth(int width) const OVERRIDE;
46 int ContentsView::GetHeightForWidth(int width) const {
49 int contents_height = child_at(0)->GetHeightForWidth(contents_width);
message_center_view_unittest.cc 44 virtual int GetHeightForWidth(int w) const OVERRIDE;
69 int MockNotificationView::GetHeightForWidth(int width) const {
72 return NotificationView::GetHeightForWidth(width);
233 // GetHeightForWidth() calls per descendant NotificationView. 20 is a very
bounded_label.cc 321 int BoundedLabel::GetHeightForWidth(int width) const {
message_center_view.cc 66 virtual int GetHeightForWidth(int width) const OVERRIDE;
95 int NoNotificationMessageView::GetHeightForWidth(int width) const {
100 int text_height = label_->GetHeightForWidth(width());
126 virtual int GetHeightForWidth(int width) const OVERRIDE;
220 int height = child->GetHeightForWidth(child_area.width());
289 GetHeightForWidth(width + GetInsets().width()));
292 int MessageListView::GetHeightForWidth(int width) const {
303 height += child->GetHeightForWidth(width) + padding;
331 fixed_height_ = GetHeightForWidth(width());
479 : GetHeightForWidth(width()) - GetInsets().bottom()
    [all...]
notification_view.cc 395 return gfx::Size(preferred_width, GetHeightForWidth(preferred_width));
398 int NotificationView::GetHeightForWidth(int width) const {
401 int top_height = top_view_->GetHeightForWidth(content_width);
402 int bottom_height = bottom_view_->GetHeightForWidth(content_width);
447 int top_height = top_view_->GetHeightForWidth(content_width);
455 int bottom_height = bottom_view_->GetHeightForWidth(content_width);
  /external/chromium_org/ui/views/test/
test_views.cc 22 int ProportionallySizedView::GetHeightForWidth(int w) const {
28 return gfx::Size(preferred_width_, GetHeightForWidth(preferred_width_));
  /external/chromium_org/chrome/browser/ui/views/toolbar/
extension_toolbar_menu_view.cc 71 int ExtensionToolbarMenuView::GetHeightForWidth(int width) const {
78 int height = container_->GetHeightForWidth(width);
browser_actions_container.cc 362 int BrowserActionsContainer::GetHeightForWidth(int width) const {
    [all...]
  /external/chromium_org/ash/system/chromeos/power/
power_status_view.cc 205 int PowerStatusView::GetHeightForWidth(int width) const {
  /external/chromium_org/ash/system/tray/
hover_highlight_view.cc 157 int HoverHighlightView::GetHeightForWidth(int width) const {
special_popup_row.cc 105 int SpecialPopupRow::GetHeightForWidth(int width) const {
tray_item_view.cc 106 int TrayItemView::GetHeightForWidth(int width) const {
  /external/chromium_org/chrome/browser/ui/views/message_center/
message_center_widget_delegate.cc 119 return gfx::Size(preferred_width, GetHeightForWidth(preferred_width));
127 int MessageCenterWidgetDelegate::GetHeightForWidth(int width) const {
128 int height = MessageCenterView::GetHeightForWidth(width);
  /external/chromium_org/ui/app_list/views/
search_result_list_view.cc 217 int SearchResultListView::GetHeightForWidth(int w) const {
218 return results_container_->GetHeightForWidth(w);
  /external/chromium_org/ui/views/controls/
styled_label.cc 166 int StyledLabel::GetHeightForWidth(int w) const {
label.cc 255 int Label::GetHeightForWidth(int w) const {
257 return View::GetHeightForWidth(w);
scroll_view.cc 217 int ScrollView::GetHeightForWidth(int width) const {
219 return View::GetHeightForWidth(width);
223 int height = contents()->GetHeightForWidth(width) + insets.height();
230 int content_height = contents()->GetHeightForWidth(content_width);
233 content_height = contents()->GetHeightForWidth(content_width);
  /external/chromium_org/ash/system/user/
user_view.cc 267 int UserView::GetHeightForWidth(int width) const {
  /external/chromium_org/ui/views/bubble/
tray_bubble_view.cc 423 return gfx::Size(preferred_width_, GetHeightForWidth(preferred_width_));
432 int TrayBubbleView::GetHeightForWidth(int width) const {
438 height += child->GetHeightForWidth(width);
  /external/chromium_org/ui/views/controls/button/
label_button.cc 267 int LabelButton::GetHeightForWidth(int w) const {
274 int height = std::max(image_size.height(), label_->GetHeightForWidth(w));
  /external/chromium_org/ui/views/controls/menu/
menu_item_view.cc 413 int MenuItemView::GetHeightForWidth(int width) const {
418 int height = child_at(0)->GetHeightForWidth(width);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_views.cc 316 virtual int GetHeightForWidth(int width) const OVERRIDE {
324 return child_at(0)->GetHeightForWidth(label_width) + GetInsets().height();
585 message_view_->GetHeightForWidth(width) +
586 image_view_->GetHeightForWidth(width);
625 int message_height = message_view_->GetHeightForWidth(bounds.width());
    [all...]
  /external/chromium_org/ui/views/
view.cc 395 int View::GetHeightForWidth(int w) const {
    [all...]

Completed in 1208 milliseconds