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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleInheritedData.cpp 32 , line_height(RenderStyle::initialLineHeight())
47 , line_height(o.line_height)
57 return line_height == o.line_height
StyleInheritedData.h 54 Length line_height; member in class:blink::StyleInheritedData
RenderStyle.cpp 521 if (inherited->line_height != other.inherited->line_height
    [all...]
  /external/chromium_org/ui/gfx/
canvas_notimplemented.cc 16 int line_height,
34 int line_height,
canvas_unittest.cc 24 gfx::Size SizeStringInt(const char *text, int width, int line_height) {
29 Canvas::SizeStringInt(text16, font_list_, &width, &height, line_height,
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...]
canvas_skia.cc 160 int line_height,
192 h += (i > 0 && line_height > 0) ? line_height : string_size.height();
220 int line_height,
258 if (line_height > 0)
259 line_padding = line_height - render_text->GetStringSize().height();
261 line_height = render_text->GetStringSize().height();
267 const int text_height = strings.size() * line_height - line_padding;
272 rect.set_height(line_height - line_padding);
278 rect += Vector2d(0, line_height);
    [all...]
canvas.h 120 // supports multiple lines. On Skia only a line_height can be specified and
126 int line_height,
135 int line_height,
364 // Currently it's only implemented for canvas skia. Specifying a 0 line_height
370 int line_height,
canvas.cc 91 int line_height,
96 &factional_height, line_height, flags);
  /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/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/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/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/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
coverage_html.js 251 line_height = l2.offset().top - l1_top,
252 nlines = (pos - l1_top) / line_height;

Completed in 1830 milliseconds