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

  /external/chromium_org/ui/gfx/
platform_font_pango.cc 39 int skia_style = SkTypeface::kNormal; local
41 skia_style |= SkTypeface::kBold;
43 skia_style |= SkTypeface::kItalic;
46 family->c_str(), static_cast<SkTypeface::Style>(skia_style)));
51 kFallbackFontFamilyName, static_cast<SkTypeface::Style>(skia_style)));
render_text.cc 83 int skia_style = SkTypeface::kNormal; local
84 skia_style |= (font_style & Font::BOLD) ? SkTypeface::kBold : 0;
85 skia_style |= (font_style & Font::ITALIC) ? SkTypeface::kItalic : 0;
86 return static_cast<SkTypeface::Style>(skia_style);
375 SkTypeface::Style skia_style = ConvertFontStyleToSkiaTypefaceStyle(style); local
376 return skia::AdoptRef(SkTypeface::CreateFromName(family.c_str(), skia_style));
    [all...]

Completed in 130 milliseconds