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

  /external/chromium_org/ui/gfx/
platform_font_win_unittest.cc 16 // Returns a font based on |base_font| with height at most |target_height| and
19 int target_height) {
21 if (base_font.GetHeight() < target_height) {
22 // Increase size while height is <= |target_height|.
24 while (larger_font.GetHeight() <= target_height) {
28 } else if (expected_font.GetHeight() > target_height) {
29 // Decrease size until height is <= |target_height|.
32 } while (expected_font.GetHeight() > target_height);
45 const int target_height = base_font.GetHeight() + i; local
46 Font expected_font = AdjustFontSizeForHeight(base_font, target_height);
    [all...]
  /external/chromium_org/chrome_frame/infobars/internal/
infobar_window.cc 130 void InfobarWindow::StartSlidingTowards(int target_height) {
132 target_height_ = target_height;
  /external/chromium/chrome/browser/ui/views/
page_info_bubble_view.cc 199 int target_height = animation_start_height_ + static_cast<int>( local
202 size.set_height(target_height);
  /external/chromium_org/ash/wm/dock/
docked_window_layout_manager.cc 227 // Returns height that is as close as possible to |target_height| while
229 int GetWindowHeightCloseTo(const aura::Window* window, int target_height) {
244 target_height = std::max(target_height, minimum_height);
246 target_height = std::min(target_height, maximum_height);
247 return target_height;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine.cc 3547 int target_height = new_height; local
    [all...]

Completed in 70 milliseconds