HomeSort by relevance Sort by last modified time
    Searched refs:fontStyle (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/skia/include/ports/
SkFontMgr_indirect.h 42 const SkFontStyle& fontStyle) const override;
51 const SkFontStyle& fontStyle) const override;
  /external/skia/src/ports/
SkFontMgr_custom.cpp 42 desc->setStyle(this->fontStyle());
83 this->fontStyle(),
110 this->fontStyle(),
131 *style = fStyles[index]->fontStyle();
202 const SkFontStyle& fontStyle) const
205 return sset->matchStyle(fontStyle);
217 const SkFontStyle& fontStyle) const
222 return fFamilies[i]->matchStyle(fontStyle);
SkFontMgr_custom.h 142 const SkFontStyle& fontStyle) const override;
147 const SkFontStyle& fontStyle) const override;
SkFontConfigTypeface.h 51 this->fontStyle(),
SkFontMgr_android.cpp 90 desc->setStyle(this->fontStyle());
111 this->fontStyle(),
161 this->fontStyle(),
254 *style = fStyles[index]->fontStyle();
  /external/skqp/include/ports/
SkFontMgr_indirect.h 42 const SkFontStyle& fontStyle) const override;
51 const SkFontStyle& fontStyle) const override;
  /external/skqp/src/ports/
SkFontMgr_custom.cpp 42 desc->setStyle(this->fontStyle());
83 this->fontStyle(),
110 this->fontStyle(),
131 *style = fStyles[index]->fontStyle();
202 const SkFontStyle& fontStyle) const
205 return sset->matchStyle(fontStyle);
217 const SkFontStyle& fontStyle) const
222 return fFamilies[i]->matchStyle(fontStyle);
SkFontMgr_custom.h 142 const SkFontStyle& fontStyle) const override;
147 const SkFontStyle& fontStyle) const override;
SkFontConfigTypeface.h 51 this->fontStyle(),
SkFontMgr_android.cpp 90 desc->setStyle(this->fontStyle());
111 this->fontStyle(),
161 this->fontStyle(),
254 *style = fStyles[index]->fontStyle();
  /external/skia/src/core/
SkTypeface.cpp 136 SkFontStyle fontStyle) {
137 if (nullptr == name && (fontStyle.slant() == SkFontStyle::kItalic_Slant ||
138 fontStyle.slant() == SkFontStyle::kUpright_Slant) &&
139 (fontStyle.weight() == SkFontStyle::kBold_Weight ||
140 fontStyle.weight() == SkFontStyle::kNormal_Weight)) {
142 (fontStyle.slant() == SkFontStyle::kItalic_Slant ? SkTypeface::kItalic :
144 (fontStyle.weight() == SkFontStyle::kBold_Weight ? SkTypeface::kBold :
147 return SkFontMgr::RefDefault()->legacyMakeTypeface(name, fontStyle);
SkTypefaceCache.cpp 88 SkFontStyle s = face->fontStyle();
  /external/skqp/src/core/
SkTypeface.cpp 136 SkFontStyle fontStyle) {
137 if (nullptr == name && (fontStyle.slant() == SkFontStyle::kItalic_Slant ||
138 fontStyle.slant() == SkFontStyle::kUpright_Slant) &&
139 (fontStyle.weight() == SkFontStyle::kBold_Weight ||
140 fontStyle.weight() == SkFontStyle::kNormal_Weight)) {
142 (fontStyle.slant() == SkFontStyle::kItalic_Slant ? SkTypeface::kItalic :
144 (fontStyle.weight() == SkFontStyle::kBold_Weight ? SkTypeface::kBold :
147 return SkFontMgr::RefDefault()->legacyMakeTypeface(name, fontStyle);
SkTypefaceCache.cpp 88 SkFontStyle s = face->fontStyle();
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewFontWeightTest.java 54 private static class FontStyle {
55 FontStyle(int weight, boolean italic) {
72 private static final Map<Character, FontStyle> CHAR_FONT_MAP;
75 final HashMap<Character, FontStyle> map = new HashMap<>();
76 map.put('a', new FontStyle(100, false));
77 map.put('b', new FontStyle(100, true));
78 map.put('c', new FontStyle(200, false));
79 map.put('d', new FontStyle(200, true));
80 map.put('e', new FontStyle(300, false));
81 map.put('f', new FontStyle(300, true))
    [all...]
  /external/skia/src/fonts/
SkFontMgr_indirect.cpp 139 const SkFontStyle& fontStyle) const {
140 SkFontIdentity id = fProxy->matchNameStyle(familyName, fontStyle);
155 const SkFontStyle& fontStyle) const {
158 return this->matchFamilyStyle(familyName.c_str(), fontStyle);
  /external/skqp/src/fonts/
SkFontMgr_indirect.cpp 139 const SkFontStyle& fontStyle) const {
140 SkFontIdentity id = fProxy->matchNameStyle(familyName, fontStyle);
155 const SkFontStyle& fontStyle) const {
158 return this->matchFamilyStyle(familyName.c_str(), fontStyle);
  /external/ImageMagick/Magick++/lib/Magick++/
Options.h 129 void fontStyle(const StyleType style_);
130 StyleType fontStyle(void) const;
  /external/skia/include/core/
SkTypeface.h 48 SkFontStyle fontStyle() const {
111 requested familyName and fontStyle. This method allows extended font
115 @param fontStyle The style of the typeface.
119 static sk_sp<SkTypeface> MakeFromName(const char familyName[], SkFontStyle fontStyle);
  /external/skia/src/utils/
SkWhitelistTypefaces.cpp 166 if (!font_name_is_local(fontName, tf->fontStyle())) {
184 serialize_sub(fontName, tf->fontStyle(), wstream);
  /external/skqp/include/core/
SkTypeface.h 48 SkFontStyle fontStyle() const {
111 requested familyName and fontStyle. This method allows extended font
115 @param fontStyle The style of the typeface.
119 static sk_sp<SkTypeface> MakeFromName(const char familyName[], SkFontStyle fontStyle);
  /external/skqp/src/utils/
SkWhitelistTypefaces.cpp 166 if (!font_name_is_local(fontName, tf->fontStyle())) {
184 serialize_sub(fontName, tf->fontStyle(), wstream);
  /external/skia/gm/
fontmgr.cpp 31 const SkFontStyle& fontStyle) {
36 sk_sp<SkTypeface> typeface(fm->matchFamilyStyleCharacter(fontName, fontStyle,
50 font.setTypeface(fm->legacyMakeTypeface(familyName.c_str(), typeface->fontStyle()));
  /external/skqp/gm/
fontmgr.cpp 31 const SkFontStyle& fontStyle) {
36 sk_sp<SkTypeface> typeface(fm->matchFamilyStyleCharacter(fontName, fontStyle,
50 font.setTypeface(fm->legacyMakeTypeface(familyName.c_str(), typeface->fontStyle()));
  /external/skia/tools/fonts/
SkTestSVGTypeface.cpp 123 desc->setStyle(this->fontStyle());
351 if (this->fontStyle().weight() >= SkFontStyle::Bold().weight()) {
354 switch (this->fontStyle().slant()) {
366 if (this->fontStyle().width() <= SkFontStyle::kCondensed_Width) {
368 } else if (this->fontStyle().width() >= SkFontStyle::kExpanded_Width) {
437 out->writeDecAsText(this->fontStyle().weight());
440 out->writeDecAsText(this->fontStyle().width());
477 if (this->fontStyle().weight() >= SkFontStyle::Bold().weight()) {
480 switch (this->fontStyle().slant()) {
482 if (this->fontStyle().weight() < SkFontStyle::Bold().weight())
    [all...]

Completed in 4087 milliseconds

1 2 3