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

1 2 3

  /external/chromium_org/ash/wm/
window_util.cc 88 int min_width,
94 min_width = std::min(min_width, visible_area.width());
97 if (bounds->x() + min_width > visible_area.right()) {
98 bounds->set_x(visible_area.right() - min_width);
99 } else if (bounds->right() - min_width < 0) {
100 bounds->set_x(min_width - bounds->width());
window_util.h 58 // including a safety margin given by |min_width| and |min_height|.
62 int min_width,
window_resizer.h 138 int min_width,
window_resizer.cc 368 int min_width,
378 if (width < min_width) {
379 width = min_width;
381 min_width);
  /external/chromium_org/ui/views/bubble/
tray_bubble_view.h 95 int min_width,
99 int min_width; member in struct:views::TrayBubbleView::InitParams
tray_bubble_view.cc 273 int min_width,
277 min_width(min_width),
322 preferred_width_(init_params.min_width),
374 width = std::max(std::min(width, params_.max_width), params_.min_width);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
stringobject.h 188 Py_ssize_t min_width);
197 Py_ssize_t min_width,
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
stringobject.h 188 Py_ssize_t min_width);
197 Py_ssize_t min_width,
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_dialog.h 48 int min_width,
extension_dialog.cc 55 int min_width,
66 host->view()->SetMinimumSize(gfx::Size(min_width, min_height));
  /hardware/samsung_slsi/exynos5/include/
v4l2-subdev.h 57 __u32 min_width; member in struct:v4l2_subdev_frame_size_enum
  /hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
v4l2-subdev.h 89 __u32 min_width; member in struct:v4l2_subdev_frame_size_enum
  /external/chromium_org/ui/views/layout/
grid_layout.h 278 // column, and is only used if size_type == FIXED. min_width gives the
290 int min_width);
314 int min_width,
grid_layout.cc 163 int min_width,
172 min_width_(min_width),
397 int min_width) {
399 min_width, false);
421 int min_width,
424 fixed_width, min_width, columns_.size(),
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_unittest.cc 260 int min_width; local
263 min_width = Tab::GetMiniWidth();
265 min_width = is_active_tab ? Tab::GetMinimumSelectedSize().width() :
268 while (bounds.width() >= min_width) {
  /external/chromium_org/remoting/host/
desktop_resizer_linux.cc 207 int min_width = 0, min_height = 0, max_width = 0, max_height = 0; local
209 &min_width, &min_height,
211 int width = std::min(std::max(preferred.dimensions().width(), min_width),
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_non_client_frame_view_ash.cc 321 int min_width = std::max(header_painter_->GetMinimumHeaderWidth(), local
328 min_width = std::max(min_width,
331 return gfx::Size(min_width, min_client_view_size.height());
  /external/chromium_org/ui/message_center/views/
message_center_bubble.cc 83 init_params.min_width += kMarginBetweenItems * 2;
  /external/chromium_org/chrome/browser/extensions/api/app_current_window_internal/
app_current_window_internal_api.cc 158 min_size.set_width(params->min_width.get() ?
159 *(params->min_width) : kUnboundedSize);
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin.cc 218 int min_width; local
220 &min_width); local
221 return min_width;
244 int min_width = GetMinWidthAttribute(); local
247 min_width = min_width ? min_width : width();
249 return std::min(min_width, GetAdjustedMaxWidth());
    [all...]
  /external/chromium_org/ui/views/controls/button/
text_button.h 143 void set_min_width(int min_width) { min_width_ = min_width; }
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-linux.c 154 sh.min_width = sh.max_width = sWindowWidth;
  /external/chromium/chrome/browser/ui/views/download/
download_item_view.cc 1078 int min_width = -1; local
    [all...]
  /external/chromium_org/ash/system/user/
tray_user.cc 599 int min_width = std::max( local
611 while (min_width < max_width) {
613 const int width = (min_width + max_width) / 2;
623 min_width = width + 1;
631 text_, font_list, min_width, INT_MAX, gfx::TRUNCATE_LONG_WORDS, &lines);
633 if (min_width - gfx::GetStringWidth(lines.back(), font_list) <=
641 min_width + insets.width(),
    [all...]
  /external/chromium/chrome/browser/ui/views/frame/
browser_view_layout.cc 84 int min_width = *std::max_element(&widths[0], &widths[arraysize(widths)]); local
85 return gfx::Size(min_width, min_height);

Completed in 829 milliseconds

1 2 3