/external/skia/src/ports/ |
D | SkFontMgr_custom.cpp | 30 SkTypeface_Custom(const SkFontStyle& style, bool isFixedPitch, in SkTypeface_Custom() argument 32 : INHERITED(style, SkTypefaceCache::NewFontID(), isFixedPitch) in SkTypeface_Custom() 75 SkTypeface_Stream(const SkFontStyle& style, bool isFixedPitch, bool sysFont, in SkTypeface_Stream() argument 77 : INHERITED(style, isFixedPitch, sysFont, familyName, index) in SkTypeface_Stream() 96 SkTypeface_File(const SkFontStyle& style, bool isFixedPitch, bool sysFont, in SkTypeface_File() argument 98 : INHERITED(style, isFixedPitch, sysFont, familyName, index) in SkTypeface_File() 295 bool isFixedPitch; in onCreateFromStream() local 298 if (fScanner.scanFont(stream, ttcIndex, &name, &style, &isFixedPitch, nullptr)) { in onCreateFromStream() 299 return new SkTypeface_Stream(style, isFixedPitch, false, name, stream.detach(), in onCreateFromStream() 394 bool isFixedPitch; in load_directory_fonts() local [all …]
|
D | SkFontMgr_android.cpp | 36 bool isFixedPitch, in SkTypeface_Android() argument 38 : INHERITED(style, SkTypefaceCache::NewFontID(), isFixedPitch) in SkTypeface_Android() 60 bool isFixedPitch, in SkTypeface_AndroidSystem() argument 64 : INHERITED(style, isFixedPitch, familyName) in SkTypeface_AndroidSystem() 112 bool isFixedPitch, in SkTypeface_AndroidStream() argument 114 : INHERITED(style, isFixedPitch, familyName) in SkTypeface_AndroidStream() 446 bool isFixedPitch; in onCreateFromStream() local 449 if (!fScanner.scanFont(stream, ttcIndex, &name, &style, &isFixedPitch, nullptr)) { in onCreateFromStream() 453 return new SkTypeface_AndroidStream(data, style, isFixedPitch, name); in onCreateFromStream() 459 bool isFixedPitch; in onCreateFromStream() local [all …]
|
D | SkFontHost_FreeType_common.h | 58 SkString* name, SkFontStyle* style, bool* isFixedPitch, 73 SkTypeface_FreeType(const SkFontStyle& style, SkFontID uniqueID, bool isFixedPitch) in SkTypeface_FreeType() argument 74 : INHERITED(style, uniqueID, isFixedPitch) in SkTypeface_FreeType()
|
D | SkFontHost_mac.cpp | 415 static SkTypeface::Style computeStyleBits(CTFontRef font, bool* isFixedPitch) { in computeStyleBits() argument 425 if (isFixedPitch) { in computeStyleBits() 426 *isFixedPitch = (traits & kCTFontMonoSpaceTrait) != 0; in computeStyleBits() 444 const SkFontStyle& fs, bool isFixedPitch, in SkTypeface_Mac() argument 446 : SkTypeface(fs, SkTypefaceCache::NewFontID(), isFixedPitch) in SkTypeface_Mac() 491 bool isFixedPitch; in NewFromFontRef() local 492 SkFontStyle style = SkFontStyle(computeStyleBits(fontRef, &isFixedPitch)); in NewFromFontRef() 494 return new SkTypeface_Mac(fontRef, resourceRef, style, isFixedPitch, name, isLocalStream); in NewFromFontRef() 2194 bool isFixedPitch; in createFromDesc() local 2195 (void)computeStyleBits(ctFont, &isFixedPitch); in createFromDesc() [all …]
|
D | SkFontMgr_fontconfig.cpp | 840 bool isFixedPitch; in onCreateFromStream() local 844 if (!fScanner.scanFont(stream, params.getCollectionIndex(), &name, &style, &isFixedPitch, in onCreateFromStream() 857 return new SkTypeface_stream(data, style, isFixedPitch); in onCreateFromStream()
|
D | SkTypeface_win_dw.cpp | 392 bool fixedWidth = (postTable->isFixedPitch && in onGetAdvancedTypefaceMetrics()
|
D | SkFontHost_FreeType.cpp | 1661 SkString* name, SkFontStyle* style, bool* isFixedPitch, AxisDefinitions* axes) const in scanFont() argument 1733 if (isFixedPitch) { in scanFont() 1734 *isFixedPitch = FT_IS_FIXED_WIDTH(face); in scanFont()
|
/external/skia/include/core/ |
D | SkTypeface.h | 78 bool isFixedPitch() const { return fIsFixedPitch; } in isFixedPitch() function 330 SkTypeface(const SkFontStyle& style, SkFontID uniqueID, bool isFixedPitch = false); 334 void setIsFixedPitch(bool isFixedPitch) { fIsFixedPitch = isFixedPitch; } in setIsFixedPitch() argument
|
/external/skia/src/sfnt/ |
D | SkOTTable_post.h | 38 SK_OT_ULONG isFixedPitch; member
|
/external/skia/src/core/ |
D | SkTypeface.cpp | 18 SkTypeface::SkTypeface(const SkFontStyle& style, SkFontID fontID, bool isFixedPitch) in SkTypeface() argument 19 : fUniqueID(fontID), fStyle(style), fIsFixedPitch(isFixedPitch) { } in SkTypeface()
|
/external/freetype/include/ |
D | tttables.h | 443 FT_ULong isFixedPitch; member
|
/external/pdfium/third_party/freetype/include/freetype/ |
D | tttables.h | 443 FT_ULong isFixedPitch; member
|
/external/pdfium/third_party/freetype/src/sfnt/ |
D | ttload.c | 1200 FT_FRAME_ULONG( isFixedPitch ), in tt_face_load_post() 1220 FT_TRACE3(( "isFixedPitch: %s\n", post->isFixedPitch in tt_face_load_post()
|
D | sfobjs.c | 1260 if ( face->postscript.isFixedPitch ) in sfnt_load_face()
|
/external/freetype/src/sfnt/ |
D | ttload.c | 1167 FT_FRAME_ULONG( isFixedPitch ), in tt_face_load_post() 1187 FT_TRACE3(( "isFixedPitch: %s\n", post->isFixedPitch in tt_face_load_post()
|
D | sfobjs.c | 1234 if ( face->postscript.isFixedPitch ) in sfnt_load_face()
|
/external/pdfium/third_party/freetype/src/truetype/ |
D | ttgload.c | 1940 if ( !face->postscript.isFixedPitch && in compute_glyph_metrics()
|
/external/freetype/src/truetype/ |
D | ttgload.c | 1967 if ( !face->postscript.isFixedPitch && in compute_glyph_metrics()
|