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

  /external/chromium_org/ui/gfx/
font_list_unittest.cc 48 int font_style = Font::BOLD | Font::ITALIC | Font::UNDERLINE; local
50 FontList font_list = FontList(font_names, font_style, font_size);
render_text_mac.h 60 int font_style; member in struct:gfx::RenderTextMac::TextRun
canvas_skia.cc 148 const int font_style = font_list.GetFontStyle(); local
149 render_text->SetStyle(BOLD, (font_style & Font::BOLD) != 0);
150 render_text->SetStyle(ITALIC, (font_style & Font::ITALIC) != 0);
151 render_text->SetStyle(UNDERLINE, (font_style & Font::UNDERLINE) != 0);
render_text_harfbuzz.h 66 int font_style; member in struct:gfx::internal::TextRunHarfBuzz
render_text_win.h 31 int font_style; member in struct:gfx::internal::TextRun
render_text_pango.cc 464 const int font_style = (style.style(BOLD) ? Font::BOLD : 0) | local
466 renderer.SetFontFamilyWithStyle(family_name, font_style);
render_text.cc 82 SkTypeface::Style ConvertFontStyleToSkiaTypefaceStyle(int font_style) {
84 skia_style |= (font_style & Font::BOLD) ? SkTypeface::kBold : 0;
85 skia_style |= (font_style & Font::ITALIC) ? SkTypeface::kItalic : 0;
448 const int font_style = font_list.GetFontStyle(); local
449 SetStyle(BOLD, (font_style & gfx::Font::BOLD) != 0);
450 SetStyle(ITALIC, (font_style & gfx::Font::ITALIC) != 0);
451 SetStyle(UNDERLINE, (font_style & gfx::Font::UNDERLINE) != 0);
    [all...]
  /external/chromium_org/ui/views/controls/
styled_label.h 42 int font_style; member in struct:views::StyledLabel::RangeStyleInfo

Completed in 105 milliseconds