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

  /external/chromium/chrome/browser/chromeos/
drop_shadow_label.cc 40 const gfx::Rect& text_bounds,
49 text_bounds.x() + i, text_bounds.y(),
50 text_bounds.width(), text_bounds.height(), flags);
52 text_bounds.x() + i, text_bounds.y() + i,
53 text_bounds.width(), text_bounds.height(), flags);
55 text_bounds.x(), text_bounds.y() + i
    [all...]
drop_shadow_label.h 40 const gfx::Rect& text_bounds,
  /external/chromium_org/ui/views/controls/
label_unittest.cc 304 gfx::Rect text_bounds; local
306 label.CalculateDrawStringParams(&paint_text, &text_bounds, &flags);
320 label.CalculateDrawStringParams(&paint_text, &text_bounds, &flags);
345 gfx::Rect text_bounds; local
349 label.CalculateDrawStringParams(&paint_text, &text_bounds, &flags);
352 EXPECT_EQ(extra.width() / 2, text_bounds.x());
353 EXPECT_EQ(extra.height() / 2 , text_bounds.y());
354 EXPECT_EQ(required_size.width(), text_bounds.width());
355 EXPECT_EQ(required_size.height(), text_bounds.height());
364 text_bounds.SetRect(0, 0, 0, 0)
482 gfx::Rect text_bounds; local
621 gfx::Rect text_bounds; local
762 gfx::Rect text_bounds; local
    [all...]
label.cc 294 const gfx::Rect& text_bounds,
302 text_bounds, line_height_, flags, shadows);
305 gfx::Rect focus_bounds = text_bounds;
345 gfx::Rect text_bounds; local
347 CalculateDrawStringParams(&paint_text, &text_bounds, &flags);
348 PaintText(canvas, paint_text, text_bounds, flags);
477 gfx::Rect* text_bounds,
479 DCHECK(paint_text && text_bounds && flags);
496 *text_bounds = GetTextBounds();
label.h 186 const gfx::Rect& text_bounds,
226 gfx::Rect* text_bounds,
  /external/chromium_org/ui/gfx/
canvas_android.cc 25 const gfx::Rect& text_bounds,
canvas_skia.cc 232 const Rect& text_bounds,
236 if (!IntersectsClipRect(text_bounds))
241 Rect clip_rect(text_bounds);
247 Rect rect(text_bounds);
267 text_bounds.width(), text_bounds.height(),
285 rect += Vector2d(0, (text_bounds.height() - text_height) / 2);
315 text_bounds.width(),
325 rect += Vector2d(0, (text_bounds.height() - text_height) / 2);
canvas.h 332 const gfx::Rect& text_bounds,
  /external/chromium_org/ui/app_list/views/
search_result_view.cc 192 gfx::Rect text_bounds(rect);
193 text_bounds.set_x(kIconViewWidth);
195 text_bounds.set_width(
200 text_bounds.set_width(
204 text_bounds.set_x(GetMirroredXWithWidthInView(text_bounds.x(),
205 text_bounds.width()));
208 gfx::Size title_size(text_bounds.width(),
210 gfx::Size details_size(text_bounds.width(),
213 int y = text_bounds.y() + (text_bounds.height() - total_height) / 2
    [all...]
  /external/chromium_org/ui/views/controls/button/
text_button.cc 361 gfx::Rect text_bounds = GetTextBounds(); local
362 text_width = text_bounds.width();
458 gfx::Rect text_bounds(GetTextBounds());
459 if (text_bounds.width() > 0) {
468 text_bounds.set_x(GetMirroredXForRect(text_bounds));
485 text_bounds.x(), text_bounds.y(), text_bounds.width(),
486 text_bounds.height(), draw_string_flags)
673 gfx::Rect text_bounds = GetTextBounds(); local
    [all...]
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_result_view.h 67 const gfx::Rect& text_bounds() const { return text_bounds_; } function in class:AutocompleteResultView
touch_autocomplete_popup_contents_view.cc 36 text_bounds().y());
40 text_bounds().y() + GetFontHeight());
  /external/chromium_org/ash/accelerators/
exit_warning_handler.cc 44 const gfx::Rect& text_bounds,
49 text_bounds,
  /external/chromium_org/cc/layers/
heads_up_display_layer_impl.cc 328 SkRect text_bounds = local
334 text_bounds.bottom() + 2 * kPadding,
353 text_bounds.left(),
354 text_bounds.bottom());
360 text_bounds.right(),
361 text_bounds.bottom());
516 SkRect text_bounds = SkRect::MakeXYWH( local
519 text_bounds.bottom() + kPadding,
538 text_bounds.left(),
539 text_bounds.bottom())
    [all...]
  /external/chromium_org/ui/views/controls/combobox/
native_combobox_views.cc 365 gfx::Rect text_bounds(x, y, text_width, text_height);
366 AdjustBoundsForRTLUI(&text_bounds);
367 canvas->DrawStringInt(text, font, text_color, text_bounds);
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_result_view.h 90 const gfx::Rect& text_bounds() const { return text_bounds_; } function in class:OmniboxResultView
touch_omnibox_popup_contents_view.cc 36 int y = text_bounds().y();
  /external/chromium_org/ui/views/controls/tree/
tree_view.cc 774 gfx::Rect text_bounds(bounds.x() + text_offset_, bounds.y(),
777 text_bounds.set_x(bounds.x());
781 canvas->FillRect(text_bounds, bg_color);
783 canvas->DrawFocusRect(text_bounds);
789 text_bounds.x() + kTextHorizontalPadding,
790 text_bounds.y() + kTextVerticalPadding,
791 text_bounds.width() - kTextHorizontalPadding * 2,
792 text_bounds.height() - kTextVerticalPadding * 2);
  /external/chromium_org/ui/views/controls/menu/
menu_item_view.cc 854 gfx::Rect text_bounds(label_start, top_margin, width, available_height);
855 text_bounds.set_x(GetMirroredXForRect(text_bounds));
860 text_bounds.x(), text_bounds.y(), text_bounds.width(),
861 text_bounds.height(), flags);
    [all...]

Completed in 348 milliseconds