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

1 2 3

  /external/chromium_org/ui/views/test/
test_views.cc 22 int ProportionallySizedView::GetHeightForWidth(int w) {
test_views.h 26 // A view that accomodates testing layouts that use GetHeightForWidth.
32 virtual int GetHeightForWidth(int w) OVERRIDE;
  /external/chromium_org/ash/system/tray/
special_popup_row.h 41 virtual int GetHeightForWidth(int width) OVERRIDE;
hover_highlight_view.h 68 virtual int GetHeightForWidth(int width) OVERRIDE;
tray_item_view.h 49 virtual int GetHeightForWidth(int width) OVERRIDE;
  /external/chromium_org/ui/message_center/views/
message_center_bubble.cc 24 virtual int GetHeightForWidth(int width) OVERRIDE;
45 int ContentsView::GetHeightForWidth(int width) {
48 int contents_height = child_at(0)->GetHeightForWidth(contents_width);
message_center_view.cc 66 virtual int GetHeightForWidth(int width) OVERRIDE;
96 int BoundedScrollView::GetHeightForWidth(int width) {
99 int height = contents()->GetHeightForWidth(width) + insets.height();
105 int content_height = contents()->GetHeightForWidth(content_width);
108 content_height = contents()->GetHeightForWidth(content_width);
122 virtual int GetHeightForWidth(int width) OVERRIDE;
151 int NoNotificationMessageView::GetHeightForWidth(int width) {
156 int text_height = label_->GetHeightForWidth(width());
181 virtual int GetHeightForWidth(int width) OVERRIDE;
281 int height = child->GetHeightForWidth(child_area.width())
    [all...]
message_center_view_unittest.cc 44 virtual int GetHeightForWidth(int w) OVERRIDE;
76 int MockNotificationView::GetHeightForWidth(int width) {
78 return child_count() ? NotificationView::GetHeightForWidth(width) : (id_);
197 // GetHeightForWidth() calls per descendant NotificationView. 20 is a very
bounded_label.h 54 virtual int GetHeightForWidth(int width) OVERRIDE;
notification_view.h 44 virtual int GetHeightForWidth(int width) OVERRIDE;
message_center_view.h 66 virtual int GetHeightForWidth(int width) OVERRIDE;
notification_view.cc 178 virtual int GetHeightForWidth(int width) OVERRIDE;
202 int ProportionalImageView::GetHeightForWidth(int width) {
309 virtual int GetHeightForWidth(int width) OVERRIDE;
376 int NotificationButton::GetHeightForWidth(int width) {
584 return gfx::Size(preferred_width, GetHeightForWidth(preferred_width));
587 int NotificationView::GetHeightForWidth(int width) {
590 int top_height = top_view_->GetHeightForWidth(content_width);
591 int bottom_height = bottom_view_->GetHeightForWidth(content_width);
629 int top_height = top_view_->GetHeightForWidth(content_width);
637 int bottom_height = bottom_view_->GetHeightForWidth(content_width)
    [all...]
  /external/chromium_org/ash/system/chromeos/power/
power_status_view.h 31 virtual int GetHeightForWidth(int width) OVERRIDE;
  /external/chromium_org/ui/views/layout/
box_layout.cc 46 total += child->GetHeightForWidth(child_area.width()) +
73 bounds.set_height(child->GetHeightForWidth(bounds.width()) + padding);
134 int extra_height = child->GetHeightForWidth(child_area_width);
  /external/chromium/chrome/browser/ui/views/download/
download_in_progress_dialog_view.cc 86 warning_->GetHeightForWidth(dialog_dimensions_.width()) +
87 explanation_->GetHeightForWidth(dialog_dimensions_.width());
  /external/chromium_org/chrome/browser/ui/views/
validation_message_bubble_delegate.cc 65 label_width, label->GetHeightForWidth(label_width));
72 sub_label->GetHeightForWidth(label_width));
  /external/chromium_org/chrome/browser/chromeos/power/
idle_action_warning_dialog_view.cc 51 return gfx::Size(width_, GetHeightForWidth(width_));
  /external/chromium_org/chrome/browser/ui/views/message_center/
message_center_widget_delegate.h 85 virtual int GetHeightForWidth(int width) OVERRIDE;
message_center_widget_delegate.cc 109 return gfx::Size(preferred_width, GetHeightForWidth(preferred_width));
117 int MessageCenterWidgetDelegate::GetHeightForWidth(int width) {
118 int height = MessageCenterView::GetHeightForWidth(width);
  /external/chromium_org/ui/views/controls/
styled_label.h 81 virtual int GetHeightForWidth(int w) OVERRIDE;
126 // This variable saves the result of the last GetHeightForWidth call in order
  /external/chromium_org/chrome/browser/chromeos/ui/
echo_dialog_view.cc 162 label_->GetHeightForWidth(kDialogLabelPreferredWidth));
178 label_->GetHeightForWidth(kDialogLabelPreferredWidth));
  /external/chromium/chrome/browser/ui/views/
page_info_bubble_view.cc 56 virtual int GetHeightForWidth(int w);
177 size.Enlarge(0, section.GetHeightForWidth(size.width()));
292 int Section::GetHeightForWidth(int width) {
329 int height = description_label_->GetHeightForWidth(w);
  /external/chromium_org/chrome/browser/ui/views/autofill/
generated_credit_card_bubble_views.cc 56 GetHeightForWidth(GeneratedCreditCardBubbleViews::kContentsWidth));
  /external/chromium/chrome/browser/ui/views/extensions/
extension_install_dialog_view.cc 194 height += heading_->GetHeightForWidth(right_column_width_);
198 height += will_have_access_to_->GetHeightForWidth(right_column_width_);
207 height += permissions_[0]->GetHeightForWidth(kPermissionLabelWidth);
extension_installed_bubble.cc 170 height += heading_->GetHeightForWidth(kRightColumnWidth);
174 height += info_->GetHeightForWidth(kRightColumnWidth);
177 height += manage_->GetHeightForWidth(kRightColumnWidth);

Completed in 252 milliseconds

1 2 3