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

  /external/chromium_org/ui/gfx/
font_unittest.cc 105 EXPECT_EQ(cf.GetExpectedTextWidth(0), 0);
106 EXPECT_GT(cf.GetExpectedTextWidth(1), cf.GetExpectedTextWidth(0));
107 EXPECT_GT(cf.GetExpectedTextWidth(2), cf.GetExpectedTextWidth(1));
108 EXPECT_GT(cf.GetExpectedTextWidth(3), cf.GetExpectedTextWidth(2));
platform_font.h 52 virtual int GetExpectedTextWidth(int length) const = 0;
font.cc 57 int Font::GetExpectedTextWidth(int length) const {
58 return platform_font_->GetExpectedTextWidth(length);
font.h 83 int GetExpectedTextWidth(int length) const;
font_list_impl.h 68 int GetExpectedTextWidth(int length) const;
platform_font_ios.h 24 virtual int GetExpectedTextWidth(int length) const OVERRIDE;
platform_font_mac.h 26 virtual int GetExpectedTextWidth(int length) const OVERRIDE;
font_list.cc 106 int FontList::GetExpectedTextWidth(int length) const {
107 return impl_->GetExpectedTextWidth(length);
font_list.h 126 int GetExpectedTextWidth(int length) const;
platform_font_pango.h 48 virtual int GetExpectedTextWidth(int length) const OVERRIDE;
platform_font_win.h 61 virtual int GetExpectedTextWidth(int length) const OVERRIDE;
font_list_impl.cc 159 int FontListImpl::GetExpectedTextWidth(int length) const {
161 return GetPrimaryFont().GetExpectedTextWidth(length);
platform_font_pango.cc 181 int PlatformFontPango::GetExpectedTextWidth(int length) const {
platform_font_win.cc 156 int PlatformFontWin::GetExpectedTextWidth(int length) const {
canvas_skia.cc 201 *width = font_list.GetExpectedTextWidth(adjusted_text.length());
render_text_pango.cc 103 width = font_list().GetExpectedTextWidth(g_utf8_strlen(layout_text_, -1));
text_elider_unittest.cc 137 font_list.GetExpectedTextWidth(test_width_factors[i]);
    [all...]
render_text.cc 94 const int average_character_width = font_list.GetExpectedTextWidth(1);
    [all...]
  /external/chromium_org/ui/base/l10n/
l10n_font_util.cc 19 int width = font.GetExpectedTextWidth(static_cast<int>(chars));
  /external/chromium_org/chrome/browser/ui/views/location_bar/
ev_bubble_view.cc 59 GetSizeForLabelWidth(font_list().GetExpectedTextWidth(kMinCharacters)));
  /external/chromium_org/chrome/browser/ui/passwords/
manage_passwords_bubble_model.cc 34 .GetExpectedTextWidth(type == USERNAME_FIELD ? kUsernameFieldSize
  /external/chromium_org/ui/app_list/views/
app_list_item_view.cc 310 title_->font_list().GetExpectedTextWidth(kLeftRightPaddingChars);
529 title_->font_list().GetExpectedTextWidth(kLeftRightPaddingChars);
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_view_views.cc 326 GetFontList().GetExpectedTextWidth(kMinCharacters) + GetInsets().width(),
    [all...]
  /external/chromium_org/ui/views/controls/textfield/
textfield.cc 566 return gfx::Size(GetFontList().GetExpectedTextWidth(default_width_in_chars_) +
    [all...]

Completed in 1421 milliseconds