Lines Matching refs:Style
4 * Use of this source code is governed by a BSD-style license that can be
209 LogFontTypeface(const SkFontStyle& style, const LOGFONT& lf, bool serializeAsStream)
210 : SkTypeface(style, SkTypefaceCache::NewFontID(), false)
295 FontMemResourceTypeface(const SkFontStyle& style, const LOGFONT& lf, HANDLE fontMemResource)
296 : LogFontTypeface(style, lf, true), fFontMemResource(fontMemResource)
2403 // Here we assert they that the style name is logically the same (size) as
2503 SkTypeface::Style style = (SkTypeface::Style)styleBits;
2504 lf.lfWeight = (style & SkTypeface::kBold) != 0 ? FW_BOLD : FW_NORMAL;
2505 lf.lfItalic = ((style & SkTypeface::kItalic) != 0);