HomeSort by relevance Sort by last modified time
    Searched defs:target_height (Results 1 - 3 of 3) 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/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/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine.cc 3547 int target_height = new_height; local
    [all...]

Completed in 29 milliseconds