Home
last modified time | relevance | path

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

/external/webkit/Source/WebKit/chromium/src/gtk/
DWebFontInfo.cpp56 FcValue fcvalue; in familyForChars() local
57 fcvalue.type = FcTypeCharSet; in familyForChars()
58 fcvalue.u.c = cset; in familyForChars()
59 FcPatternAdd(pattern, FC_CHARSET, fcvalue, FcFalse); in familyForChars()
61 fcvalue.type = FcTypeBool; in familyForChars()
62 fcvalue.u.b = FcTrue; in familyForChars()
63 FcPatternAdd(pattern, FC_SCALABLE, fcvalue, FcFalse); in familyForChars()
122 FcValue fcvalue; in renderStyleForStrike() local
124 fcvalue.type = FcTypeString; in renderStyleForStrike()
125 fcvalue.u.s = reinterpret_cast<const FcChar8 *>(family); in renderStyleForStrike()
[all …]
/external/skia/src/ports/
DSkFontHost_fontconfig.cpp81 FcValue fcvalue; in FontMatch() local
82 fcvalue.type = vtype; in FontMatch()
85 fcvalue.u.s = (FcChar8*) value; in FontMatch()
88 fcvalue.u.i = (int)(intptr_t)value; in FontMatch()
93 FcPatternAdd(pattern, type, fcvalue, FcFalse); in FontMatch()
/external/skia/legacy/src/ports/
DSkFontHost_fontconfig.cpp104 FcValue fcvalue; in FontMatch() local
105 fcvalue.type = vtype; in FontMatch()
108 fcvalue.u.s = (FcChar8*) value; in FontMatch()
111 fcvalue.u.i = (int)(intptr_t)value; in FontMatch()
116 FcPatternAdd(pattern, type, fcvalue, 0); in FontMatch()