Home
last modified time | relevance | path

Searched refs:fcvalue (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/exported/linux/
DWebFontInfo.cpp55 FcValue fcvalue; in familyForChar() local
56 fcvalue.type = FcTypeCharSet; in familyForChar()
57 fcvalue.u.c = cset; in familyForChar()
58 FcPatternAdd(pattern, FC_CHARSET, fcvalue, FcFalse); in familyForChar()
60 fcvalue.type = FcTypeBool; in familyForChar()
61 fcvalue.u.b = FcTrue; in familyForChar()
62 FcPatternAdd(pattern, FC_SCALABLE, fcvalue, FcFalse); in familyForChar()
132 FcValue fcvalue; in renderStyleForStrike() local
134 fcvalue.type = FcTypeString; in renderStyleForStrike()
135 fcvalue.u.s = reinterpret_cast<const FcChar8 *>(family); in renderStyleForStrike()
[all …]
/external/chromium_org/ui/gfx/
Dplatform_font_pango.cc43 FcValue fcvalue; in FindBestMatchFontFamilyName() local
44 fcvalue.type = FcTypeString; in FindBestMatchFontFamilyName()
45 fcvalue.u.s = reinterpret_cast<const FcChar8*>(it->c_str()); in FindBestMatchFontFamilyName()
46 FcPatternAdd(pattern, FC_FAMILY, fcvalue, FcTrue /* append */); in FindBestMatchFontFamilyName()