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

1 2

  /external/chromium/chrome/browser/ui/views/
first_run_bubble.cc 170 gfx::Size pref_size = label1_->GetPreferredSize(); local
175 pref_size.height());
177 int next_v_space = label1_->y() + pref_size.height() +
180 pref_size = label2_->GetPreferredSize();
183 pref_size.height());
188 pref_size = label3_->GetPreferredSize();
191 pref_size.height());
193 pref_size = change_button_->GetPreferredSize();
195 canvas.width() - pref_size.width() - kBubblePadding,
196 canvas.height() - pref_size.height() - views::kButtonVEdgeMargin
323 gfx::Size pref_size = label1_->GetPreferredSize(); local
441 gfx::Size pref_size = label1_->GetPreferredSize(); local
    [all...]
dropdown_bar_host.cc 160 gfx::Size pref_size = view_->GetPreferredSize(); local
162 pref_size.height());
first_run_search_engine_view.cc 353 gfx::Size pref_size = background_image_->GetPreferredSize(); local
355 pref_size.height());
369 pref_size.height() / 2 - title_label_->GetPreferredSize().height() / 2,
  /external/chromium_org/ash/
popup_message.cc 166 gfx::Size pref_size = views::BubbleDelegateView::GetPreferredSize(); local
170 pref_size.set_height(size_override_.height());
171 else if (pref_size.height() < kMessageMinHeight)
172 pref_size.set_height(kMessageMinHeight);
175 pref_size.set_width(size_override_.width());
176 else if (pref_size.width() > kMessageMaxWidth)
177 pref_size.set_width(kMessageMaxWidth);
179 return pref_size;
  /external/chromium_org/chrome/browser/ui/views/autofill/
tooltip_icon.cc 21 gfx::Size pref_size = view->GetPreferredSize(); local
24 origin.Offset(-pref_size.width() / 2, -pref_size.height() / 2);
27 local_bounds.bottom() - (origin.y() + pref_size.height()),
28 local_bounds.right() - (origin.x() + pref_size.width()));
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_view.h 106 // resize. |pref_size| is the new preferred size of the sign-in page.
107 virtual void OnSignInResize(const gfx::Size& pref_size) = 0;
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
Cache.java 128 * @param pref_size specifies how many leading/trailing bytes of object's
132 public Cache(int pref_size, int size) {
134 prefix_size = pref_size;
143 * @param pref_size specifies how many leading/trailing bytes of object's
146 public Cache(int pref_size) {
147 this(pref_size, 9);
  /external/chromium_org/ash/shelf/
shelf_tooltip_manager.cc 131 gfx::Size pref_size = views::BubbleDelegateView::GetPreferredSize(); local
132 if (pref_size.height() < kTooltipMinHeight)
133 pref_size.set_height(kTooltipMinHeight);
134 if (pref_size.width() > kTooltipMaxWidth)
135 pref_size.set_width(kTooltipMaxWidth);
136 return pref_size;
  /external/chromium_org/chrome/browser/notifications/
balloon_host.h 65 const gfx::Size& pref_size) OVERRIDE;
balloon_host.cc 81 const gfx::Size& pref_size) {
83 balloon_->ResizeDueToAutoResize(pref_size);
  /external/chromium_org/chrome/browser/ui/views/notifications/
balloon_view_views.cc 263 const gfx::Size& pref_size(close_button_->GetPreferredSize());
264 bounds.Inset(bounds.width() - kShelfMargin - pref_size.width(), 0,
266 bounds.ClampToCenteredSize(pref_size);
273 const gfx::Size& pref_size(options_menu_button_->GetPreferredSize());
275 pref_size.width());
276 bounds.set_width(pref_size.width());
277 bounds.ClampToCenteredSize(pref_size);
284 gfx::Size pref_size(source_label_->GetPreferredSize());
287 pref_size.set_width(bounds.width());
288 bounds.ClampToCenteredSize(pref_size);
    [all...]
  /external/chromium/chrome/browser/tab_contents/
tab_contents_view_mac.h 71 virtual void UpdatePreferredSize(const gfx::Size& pref_size);
  /external/chromium_org/chrome/browser/ui/cocoa/autofill/
autofill_dialog_cocoa.h 61 virtual void OnSignInResize(const gfx::Size& pref_size) OVERRIDE;
  /external/chromium_org/ui/views/controls/
progress_bar.cc 186 gfx::Size pref_size(100, 11);
188 pref_size.Enlarge(insets.width(), insets.height());
189 return pref_size;
image_view.cc 35 gfx::Size pref_size(GetPreferredSize());
37 if (pref_size != GetPreferredSize())
  /external/chromium/chrome/browser/notifications/
balloon_host.h 114 virtual void UpdatePreferredSize(const gfx::Size& pref_size);
  /external/chromium_org/chrome/browser/ui/views/
dropdown_bar_host.cc 190 gfx::Size pref_size = view_->GetPreferredSize(); local
192 pref_size.height());
  /external/chromium/chrome/browser/chromeos/notifications/
notification_panel.cc 749 gfx::Size pref_size = balloon_container_->GetPreferredSize(); local
750 int new_height = std::min(pref_size.height(), kMaxPanelHeight);
751 int new_width = pref_size.width();
753 if (new_height != pref_size.height()) {
760 gfx::Size pref_size = balloon_container_->GetPreferredSize(); local
763 int new_width = pref_size.width();
765 if (new_height != pref_size.height())
  /external/chromium/chrome/browser/chromeos/login/
new_user_view.cc 353 gfx::Size pref_size = view->GetPreferredSize(); local
355 if (pref_size.width() < width) {
356 width = pref_size.width();
359 int height = pref_size.height();
  /external/chromium_org/chrome/browser/ui/
browser_window.h 347 const gfx::Size& pref_size) {}
  /external/chromium_org/ui/message_center/views/
notification_view.cc 220 gfx::Size pref_size(kProgressBarWidth, message_center::kProgressBarThickness);
222 pref_size.Enlarge(insets.width(), insets.height());
223 return pref_size;
  /external/chromium_org/content/browser/renderer_host/
render_view_host_delegate.h 362 virtual void UpdatePreferredSize(const gfx::Size& pref_size) {}
render_view_host_unittest.cc 138 virtual void UpdatePreferredSize(const gfx::Size& pref_size) {}
  /external/chromium_org/content/public/browser/
web_contents_delegate.h 407 const gfx::Size& pref_size) {}
  /external/chromium_org/chrome/browser/ui/views/panels/
panel_frame_view.cc 505 gfx::Size pref_size = local
507 gfx::Rect bounds(0, 0, pref_size.width(), pref_size.height());

Completed in 421 milliseconds

1 2