HomeSort by relevance Sort by last modified time
    Searched defs:line_height (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleInheritedData.h 54 Length line_height; member in class:blink::StyleInheritedData
  /external/chromium_org/ui/views/controls/
styled_label.cc 137 void StyledLabel::SetLineHeight(int line_height) {
138 specified_line_height_ = line_height;
202 const int line_height = specified_line_height_ > 0 ? specified_line_height_ local
229 const gfx::Rect chunk_bounds(x, 0, width - x, 2 * line_height);
308 GetInsets().top() + line * line_height -
320 int total_height = line * line_height +
label.h 77 int line_height() const { return line_height_; } function in class:views::Label
  /external/chromium_org/content/browser/renderer_host/input/
touch_selection_controller_unittest.cc 318 float line_height = 10.f; local
319 gfx::RectF start_rect(10, 0, 0, line_height);
517 float line_height = 10.f; local
518 gfx::RectF start_rect(0, 0, 0, line_height);
519 gfx::RectF end_rect(50, 0, 0, line_height);
571 float line_height = 10.f; local
572 gfx::RectF start_rect(0, 0, 0, line_height);
573 gfx::RectF end_rect(50, 0, 0, line_height);
  /external/chromium_org/ui/message_center/views/
bounded_label.cc 133 // Restrict line limit to ensure (lines + 1) * line_height <= INT_MAX and
137 int line_height = std::max(font_list().GetHeight(), local
139 int max_lines = std::numeric_limits<int>::max() / line_height - 1;
141 height = (lines + 1) * line_height;
297 return label_->line_height();
  /external/chromium_org/ash/system/user/
user_card_view.cc 327 const int line_height = font_list.GetHeight(); local
329 link_size.height() - learn_more_->GetInsets().top() - line_height, 0);
332 line_count * line_height + link_extra_height + insets.height());
  /external/chromium_org/ui/gfx/
text_elider_unittest.cc 478 const int line_height = font_list.GetHeight(); local
492 { "Test", test_width, line_height, false, "Test" },
493 { "Test Test", test_width, line_height, true, "Test" },
494 { "Test Test", test_width, line_height + 1, false, "Test|Test" },
495 { "Test Test", test_width, line_height * 2, false, "Test|Test" },
496 { "Test Test", test_width, line_height * 3, false, "Test|Test" },
497 { "Test Test", test_width * 2, line_height * 2, false, "Test|Test" },
498 { "Test Test", test_width * 3, line_height, false, "Test Test" },
499 { "Test\nTest", test_width * 3, line_height * 2, false, "Test|Test" },
500 { "Te\nst Te", test_width, line_height * 3, false, "Te|st|Te" }
542 const int line_height = font_list.GetHeight(); local
    [all...]

Completed in 242 milliseconds