/external/skia/src/ports/ |
D | SkFontHost_linux.cpp | 29 SkTypeface::Style* style, bool* isFixedPitch); 36 SkTypeface_Custom(Style style, bool sysFont, bool isFixedPitch, const SkString familyName) in SkTypeface_Custom() argument 37 : INHERITED(style, SkTypefaceCache::NewFontID(), isFixedPitch) in SkTypeface_Custom() 79 bool isFixedPitch, const SkString familyName) in SkTypeface_Stream() argument 80 : INHERITED(style, sysFont, isFixedPitch, familyName) in SkTypeface_Stream() 102 bool isFixedPitch, const SkString familyName) in SkTypeface_File() argument 103 : INHERITED(style, sysFont, isFixedPitch, familyName) in SkTypeface_File() 269 bool isFixedPitch; in onCreateFromStream() local 272 if (find_name_and_attributes(stream, &name, &style, &isFixedPitch)) { in onCreateFromStream() 273 return SkNEW_ARGS(SkTypeface_Stream, (style, false, stream, isFixedPitch, name)); in onCreateFromStream() [all …]
|
D | SkFontHost_FreeType_common.h | 49 SkTypeface_FreeType(Style style, SkFontID uniqueID, bool isFixedPitch) in SkTypeface_FreeType() argument 50 : INHERITED(style, uniqueID, isFixedPitch) in SkTypeface_FreeType()
|
D | SkFontHost_mac.cpp | 359 static SkTypeface::Style computeStyleBits(CTFontRef font, bool* isFixedPitch) { in computeStyleBits() argument 369 if (isFixedPitch) { in computeStyleBits() 370 *isFixedPitch = (traits & kCTFontMonoSpaceTrait) != 0; in computeStyleBits() 428 SkTypeface_Mac(SkTypeface::Style style, SkFontID fontID, bool isFixedPitch, in SkTypeface_Mac() argument 430 : SkTypeface(style, fontID, isFixedPitch) in SkTypeface_Mac() 438 SkTypeface_Mac(const SkFontStyle& fs, SkFontID fontID, bool isFixedPitch, in SkTypeface_Mac() argument 440 : SkTypeface(fontstyle2stylebits(fs), fontID, isFixedPitch) in SkTypeface_Mac() 478 bool isFixedPitch; in NewFromFontRef() local 479 SkTypeface::Style style = computeStyleBits(fontRef, &isFixedPitch); in NewFromFontRef() 482 return new SkTypeface_Mac(style, fontID, isFixedPitch, fontRef, name); in NewFromFontRef() [all …]
|
/external/chromium_org/third_party/skia/src/ports/ |
D | SkFontHost_linux.cpp | 33 SkTypeface_Custom(Style style, bool isFixedPitch, in SkTypeface_Custom() argument 35 : INHERITED(style, SkTypefaceCache::NewFontID(), isFixedPitch) in SkTypeface_Custom() 84 SkTypeface_Stream(Style style, bool isFixedPitch, bool sysFont, const SkString familyName, in SkTypeface_Stream() argument 86 : INHERITED(style, isFixedPitch, sysFont, familyName, ttcIndex) in SkTypeface_Stream() 107 SkTypeface_File(Style style, bool isFixedPitch, bool sysFont, const SkString familyName, in SkTypeface_File() argument 109 : INHERITED(style, isFixedPitch, sysFont, familyName, index) in SkTypeface_File() 275 bool isFixedPitch; in onCreateFromStream() local 278 if (SkTypeface_FreeType::ScanFont(stream, ttcIndex, &name, &style, &isFixedPitch)) { in onCreateFromStream() 279 return SkNEW_ARGS(SkTypeface_Stream, (style, isFixedPitch, false, name, in onCreateFromStream() 318 SkTypeface::Style* style, bool* isFixedPitch) { in get_name_and_style() argument [all …]
|
D | SkFontHost_FreeType_common.h | 52 SkString* name, SkTypeface::Style* style, bool* isFixedPitch); 55 SkTypeface_FreeType(Style style, SkFontID uniqueID, bool isFixedPitch) in SkTypeface_FreeType() argument 56 : INHERITED(style, uniqueID, isFixedPitch) in SkTypeface_FreeType()
|
D | SkFontMgr_android.cpp | 46 bool isFixedPitch, in SkTypeface_Android() argument 48 : INHERITED(style, SkTypefaceCache::NewFontID(), isFixedPitch) in SkTypeface_Android() 69 bool isFixedPitch, in SkTypeface_AndroidSystem() argument 73 : INHERITED(index, style, isFixedPitch, familyName) in SkTypeface_AndroidSystem() 104 bool isFixedPitch, in SkTypeface_AndroidStream() argument 106 : INHERITED(index, style, isFixedPitch, familyName) in SkTypeface_AndroidStream() 435 bool isFixedPitch; in onMatchFamilyStyleCharacter() local 438 if (!SkTypeface_FreeType::ScanFont(stream, ttcIndex, &name, &style, &isFixedPitch)) { in onMatchFamilyStyleCharacter() 442 style, isFixedPitch, name)); in onMatchFamilyStyleCharacter()
|
D | SkFontHost_mac.cpp | 355 static SkTypeface::Style computeStyleBits(CTFontRef font, bool* isFixedPitch) { in computeStyleBits() argument 365 if (isFixedPitch) { in computeStyleBits() 366 *isFixedPitch = (traits & kCTFontMonoSpaceTrait) != 0; in computeStyleBits() 424 SkTypeface_Mac(SkTypeface::Style style, SkFontID fontID, bool isFixedPitch, in SkTypeface_Mac() argument 426 : SkTypeface(style, fontID, isFixedPitch) in SkTypeface_Mac() 435 SkTypeface_Mac(const SkFontStyle& fs, SkFontID fontID, bool isFixedPitch, in SkTypeface_Mac() argument 437 : SkTypeface(fontstyle2stylebits(fs), fontID, isFixedPitch) in SkTypeface_Mac() 478 bool isFixedPitch; in NewFromFontRef() local 479 SkTypeface::Style style = computeStyleBits(fontRef, &isFixedPitch); in NewFromFontRef() 482 return new SkTypeface_Mac(style, fontID, isFixedPitch, fontRef, name, isLocalStream); in NewFromFontRef() [all …]
|
/external/chromium_org/third_party/skia/include/core/ |
D | SkTypeface.h | 67 bool isFixedPitch() const { return fIsFixedPitch; } in isFixedPitch() function 288 SkTypeface(Style style, SkFontID uniqueID, bool isFixedPitch = false); 292 void setIsFixedPitch(bool isFixedPitch) { fIsFixedPitch = isFixedPitch; } in setIsFixedPitch() argument
|
/external/skia/include/core/ |
D | SkTypeface.h | 67 bool isFixedPitch() const { return fIsFixedPitch; } in isFixedPitch() function 288 SkTypeface(Style style, SkFontID uniqueID, bool isFixedPitch = false); 292 void setIsFixedPitch(bool isFixedPitch) { fIsFixedPitch = isFixedPitch; } in setIsFixedPitch() argument
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
D | Font.h | 112 bool isFixedPitch() const; 215 inline bool Font::isFixedPitch() const in isFixedPitch() function 218 return m_fontFallbackList->isFixedPitch(m_fontDescription); in isFixedPitch()
|
D | FontPlatformData.cpp | 316 bool FontPlatformData::isFixedPitch() const in isFixedPitch() function in blink::FontPlatformData 318 return typeface() && typeface()->isFixedPitch(); in isFixedPitch()
|
D | FontFallbackList.h | 68 bool isFixedPitch(const FontDescription& fontDescription) const in isFixedPitch() function
|
D | FontPlatformData.h | 107 bool isFixedPitch() const;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/ |
D | BreakingContextInlineHeaders.h | 516 …text, unsigned from, unsigned len, const Font& font, float xPos, bool isFixedPitch, bool collapseW… 519 if (isFixedPitch || (!from && len == text->textLength()) || text->style()->hasTextCombine()) 559 bool isFixedPitch = font.isFixedPitch(); in handleText() local 621 …sBeforeSurrogatePair ? 2 : 1, font, m_width.committedWidth() + wrapW, isFixedPitch, m_collapseWhit… in handleText() 657 …ce, m_current.offset() + 1 - lastSpace, font, m_width.currentWidth(), isFixedPitch, m_collapseWhit… in handleText() 659 …tSpace, m_current.offset() - lastSpace, font, m_width.currentWidth(), isFixedPitch, m_collapseWhit… in handleText() 683 …idth(renderText, m_current.offset(), 1, font, m_width.currentWidth(), isFixedPitch, m_collapseWhit… in handleText() 814 …tSpace, m_current.offset() - lastSpace, font, m_width.currentWidth(), isFixedPitch, m_collapseWhit… in handleText()
|
/external/skia/src/sfnt/ |
D | SkOTTable_post.h | 38 SK_OT_ULONG isFixedPitch; member
|
/external/chromium_org/third_party/skia/src/sfnt/ |
D | SkOTTable_post.h | 38 SK_OT_ULONG isFixedPitch; member
|
/external/skia/src/core/ |
D | SkTypeface.cpp | 23 SkTypeface::SkTypeface(Style style, SkFontID fontID, bool isFixedPitch) in SkTypeface() argument 24 : fUniqueID(fontID), fStyle(style), fIsFixedPitch(isFixedPitch) { in SkTypeface()
|
/external/chromium_org/third_party/skia/src/core/ |
D | SkTypeface.cpp | 23 SkTypeface::SkTypeface(Style style, SkFontID fontID, bool isFixedPitch) in SkTypeface() argument 24 : fUniqueID(fontID), fStyle(style), fIsFixedPitch(isFixedPitch) { in SkTypeface()
|
/external/freetype/include/ |
D | tttables.h | 424 FT_ULong isFixedPitch; member
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/ |
D | tttables.h | 420 FT_ULong isFixedPitch; member
|
/external/chromium_org/third_party/freetype/include/freetype/ |
D | tttables.h | 420 FT_ULong isFixedPitch; member
|
/external/pdfium/core/include/thirdparties/freetype/freetype/ |
D | tttables.h | 420 FT_ULong isFixedPitch; member
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/ |
D | SimpleFontDataSkia.cpp | 204 m_treatAsFixedPitch = platformData().isFixedPitch(); in determinePitch()
|
/external/freetype/src/sfnt/ |
D | ttload.c | 1124 FT_FRAME_ULONG( isFixedPitch ), in tt_face_load_post() 1144 FT_TRACE3(( "isFixedPitch: %s\n", post->isFixedPitch in tt_face_load_post()
|
/external/chromium_org/third_party/freetype/src/sfnt/ |
D | ttload.c | 1107 FT_FRAME_ULONG( isFixedPitch ), in tt_face_load_post() 1127 FT_TRACE3(( "isFixedPitch: %s\n", post->isFixedPitch in tt_face_load_post()
|