HomeSort by relevance Sort by last modified time
    Searched refs:content_height (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/printing/
page_size_margins.h 20 double content_height; member in struct:printing::PageSizeMargins
  /external/chromium_org/chrome/browser/ui/views/frame/
contents_container.cc 41 int content_height = std::max(0, height() - content_y); local
43 active_->SetBounds(0, content_y, width(), content_height);
  /external/chromium_org/ui/views/controls/menu/
menu_scroll_view_container.cc 231 int content_height = height() - insets.height(); local
233 scroll_view_->SetBounds(x, y, width, content_height);
240 content_height -= pref.height();
247 content_height -= pref.height();
249 scroll_view_->SetBounds(x, scroll_view_y, width, content_height);
  /external/chromium_org/ui/message_center/views/
message_center_view.cc 105 int content_height = contents()->GetHeightForWidth(content_width); local
106 if (content_height > height()) {
108 content_height = contents()->GetHeightForWidth(content_width);
110 if (contents()->bounds().size() != gfx::Size(content_width, content_height))
111 contents()->SetBounds(0, 0, content_width, content_height);
825 int content_height = target_height_; local
827 content_height = settings_transition_animation_->CurrentValueBetween(
830 return button_bar_->GetHeightForWidth(width) + content_height;
833 int content_height = 0; local
835 content_height += scroller_->GetHeightForWidth(width)
    [all...]
notifier_settings_view.cc 102 int content_height = content->GetHeightForWidth(content_width); local
103 int y = std::max((height() - content_height) / 2, 0);
104 content->SetBounds(kEntryMargin, y, content_width, content_height);
461 int content_height = contents_view->GetHeightForWidth(content_width); local
462 if (title_height + content_height > height()) {
464 content_height = contents_view->GetHeightForWidth(content_width);
466 contents_view->SetBounds(0, 0, content_width, content_height);
notification_view.cc 592 int content_height = std::max(top_height, kIconSize) + bottom_height; local
601 content_height -= GetMessageHeight(content_width, used_limit);
602 content_height += GetMessageHeight(content_width, correct_limit);
608 if (content_height > kIconSize)
609 content_height = std::max(content_height,
612 return content_height + GetInsets().height();
  /external/chromium/chrome/browser/ui/views/tabs/
tab.cc 236 int content_height = std::max(kFaviconSize, font_height()); local
238 content_height = std::max(content_height, close_button_size.height());
244 int favicon_top = kTopPadding + content_height / 2 - kFaviconSize / 2;
270 (content_height - close_button_size.height()) / 2;
282 int title_top = kTopPadding + (content_height - font_height()) / 2;
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_renderer_gtk.cc 476 int content_height = std::max(kFaviconSize, title_font_height_); local
477 return std::max(content_height, close_button_height_);
672 int content_height = GetContentHeight(); local
677 int favicon_top = kTopPadding + (content_height - kFaviconSize) / 2;
702 (content_height - close_button_height_) / 2;
743 title_bounds_.SetRect(title_left, title_top, title_width, content_height);
    [all...]
  /external/chromium_org/android_webview/renderer/
print_web_view_helper.cc 191 double content_height = local
210 content_height *= scale_factor;
219 static_cast<int>(content_width), static_cast<int>(content_height));
229 int content_height = params.content_size.height(); local
232 content_height - params.margin_top;
238 page_layout_in_points->content_height =
239 ConvertUnit(content_height, dpi, kPointsPerInch);
446 page_layout.content_height);
    [all...]
  /external/chromium_org/chrome/renderer/printing/
print_web_view_helper.cc 196 double content_height = local
215 content_height *= scale_factor;
224 static_cast<int>(content_width), static_cast<int>(content_height));
234 int content_height = params.content_size.height(); local
237 content_height - params.margin_top;
243 page_layout_in_points->content_height =
244 ConvertUnit(content_height, dpi, kPointsPerInch);
453 page_layout.content_height);
    [all...]
print_web_view_helper_browsertest.cc 512 void VerifyDefaultPageLayout(int content_width, int content_height,
525 EXPECT_EQ(content_height, param.a.content_height);
    [all...]
print_web_view_helper_win.cc 164 static_cast<int>(page_layout_in_points.content_height *
  /external/chromium_org/chrome/browser/ui/gtk/tabs/
tab_renderer_gtk.cc 597 int content_height = std::max(gfx::kFaviconSize, title_font_height_); local
598 return std::max(content_height, close_button_height_);
778 int content_height = GetContentHeight(); local
783 int favicon_top = kTopPadding + (content_height - gfx::kFaviconSize) / 2;
807 (content_height - close_button_height_) / 2;
851 title_bounds_.SetRect(title_left, title_top, title_width, content_height);
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/print_preview/
print_preview_ui.cc 467 page_layout.content_width < 0 || page_layout.content_height < 0 ||
479 layout.SetDouble(printing::kSettingContentHeight, page_layout.content_height);
  /external/chromium_org/android_webview/common/
print_messages.h 172 IPC_STRUCT_TRAITS_MEMBER(content_height)
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_install_dialog_view.cc 678 int content_height = contents_view->GetHeightForWidth(content_width); local
679 if (content_height > height()) {
681 content_height = contents_view->GetHeightForWidth(content_width);
683 contents_view->SetBounds(0, 0, content_width, content_height);
  /external/chromium_org/chrome/common/
print_messages.h 172 IPC_STRUCT_TRAITS_MEMBER(content_height)
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab.cc 771 int content_height = std::max(tab_icon_size(), font_height_); local
774 content_height = std::max(content_height, close_button_size.height());
780 int favicon_top = top_padding() + content_height / 2 - tab_icon_size() / 2;
810 (content_height - close_button_size.height()) / 2;
838 (content_height - font_height_) / 2;
    [all...]

Completed in 272 milliseconds