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

  /external/chromium_org/ui/gfx/
font_list.cc 16 // Parses font description into |font_names|, |font_style| and |font_size|.
19 int* font_style,
33 *font_style = 0;
40 *font_style |= gfx::Font::BOLD;
42 *font_style |= gfx::Font::ITALIC;
49 std::string FontStyleAndSizeToString(int font_style, int font_size) {
51 if (font_style & gfx::Font::BOLD)
53 if (font_style & gfx::Font::ITALIC)
60 // Returns font description from |font_names|, |font_style|, and |font_size|.
62 int font_style,
    [all...]
font_list.h 46 int font_style,
58 // Returns a new FontList with the given |font_style| flags.
59 FontList DeriveFontList(int font_style) const;
71 // |font_style| specifies the new style, which is a bitmask of the values:
74 int font_style) const;
platform_font_win.cc 56 // Sets style properties on |font_info| based on |font_style|.
57 void SetLogFontStyle(int font_style, LOGFONT* font_info) {
58 font_info->lfUnderline = (font_style & gfx::Font::UNDERLINE) != 0;
59 font_info->lfItalic = (font_style & gfx::Font::ITALIC) != 0;
60 font_info->lfWeight = (font_style & gfx::Font::BOLD) ? FW_BOLD : FW_NORMAL;
render_text_mac.h 59 int font_style; member in struct:gfx::RenderTextMac::TextRun
render_text_mac.cc 170 renderer.SetFontFamilyWithStyle(run.font_name, run.font_style);
182 font_style(Font::NORMAL),
317 run->font_style |= Font::BOLD;
319 run->font_style |= Font::ITALIC;
render_text_win.h 31 int font_style; member in struct:gfx::internal::TextRun
render_text_win.cc 97 // XP) and |font_style| if it is not the case already. Only considers bold and
101 int font_style,
104 const int target_style = (font_style & kStyleMask);
162 : font_style(0),
507 renderer.SetFontFamilyWithStyle(run->font.GetFontName(), run->font_style);
582 run->font_style = (style.style(BOLD) ? Font::BOLD : 0) |
585 run->font_style, &run->font);
806 DeriveFontIfNecessary(font_size, font_height, run->font_style, &run->font);
    [all...]
font_list_unittest.cc 45 int font_style = Font::BOLD | Font::ITALIC; local
47 FontList font_list = FontList(font_names, font_style, font_size);
render_text_linux.cc 451 const int font_style = (style.style(BOLD) ? Font::BOLD : 0) | local
453 renderer.SetFontFamilyWithStyle(family_name, font_style);
render_text.h 55 void SetFontFamilyWithStyle(const std::string& family, int font_style);
render_text.cc 48 SkTypeface::Style ConvertFontStyleToSkiaTypefaceStyle(int font_style) {
50 skia_style |= (font_style & gfx::Font::BOLD) ? SkTypeface::kBold : 0;
51 skia_style |= (font_style & gfx::Font::ITALIC) ? SkTypeface::kItalic : 0;
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_types.cc 122 gfx::Font::FontStyle font_style = gfx::Font::NORMAL; local
126 font_style = gfx::Font::NORMAL;
131 font_style = gfx::Font::BOLD;
136 ui::ResourceBundle::BaseFont).DeriveFont(0, font_style);
  /external/chromium_org/ui/views/controls/
styled_label.cc 36 link->SetUnderline((style_info.font_style & gfx::Font::UNDERLINE) != 0);
51 if (style_info.font_style != gfx::Font::NORMAL)
52 result->SetFont(result->font().DeriveFont(0, style_info.font_style));
60 : font_style(gfx::Font::NORMAL),
189 text_font.DeriveFont(0, style_ranges.top().style_info.font_style);
styled_label.h 41 int font_style; member in struct:views::StyledLabel::RangeStyleInfo
styled_label_unittest.cc 188 style_info.font_style = gfx::Font::UNDERLINE;
210 style_info.font_style = gfx::Font::BOLD;
  /external/chromium_org/chrome/browser/chromeos/ui/
echo_dialog_view.cc 55 service_name_style.font_style = gfx::Font::UNDERLINE;
63 link_style.font_style = gfx::Font::NORMAL;
87 link_style.font_style = gfx::Font::NORMAL;
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_sync_promo_view.cc 54 link_style.font_style = gfx::Font::NORMAL;
  /external/chromium_org/chrome/browser/ui/views/autofill/
generated_credit_card_bubble_views.cc 77 style.font_style = gfx::Font::BOLD;
  /external/chromium_org/chrome/browser/ui/views/sync/
profile_signin_confirmation_dialog_views.cc 172 bold_style.font_style = gfx::Font::BOLD;

Completed in 134 milliseconds