Home
last modified time | relevance | path

Searched refs:isFixedPitch (Results 1 – 25 of 38) sorted by relevance

12

/external/skia/src/ports/
DSkFontHost_linux.cpp29 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 …]
DSkFontHost_FreeType_common.h49 SkTypeface_FreeType(Style style, SkFontID uniqueID, bool isFixedPitch) in SkTypeface_FreeType() argument
50 : INHERITED(style, uniqueID, isFixedPitch) in SkTypeface_FreeType()
DSkFontHost_mac.cpp359 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/
DSkFontHost_linux.cpp33 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 …]
DSkFontHost_FreeType_common.h52 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()
DSkFontMgr_android.cpp46 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()
DSkFontHost_mac.cpp355 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/
DSkTypeface.h67 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/
DSkTypeface.h67 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/
DFont.h112 bool isFixedPitch() const;
215 inline bool Font::isFixedPitch() const in isFixedPitch() function
218 return m_fontFallbackList->isFixedPitch(m_fontDescription); in isFixedPitch()
DFontPlatformData.cpp316 bool FontPlatformData::isFixedPitch() const in isFixedPitch() function in blink::FontPlatformData
318 return typeface() && typeface()->isFixedPitch(); in isFixedPitch()
DFontFallbackList.h68 bool isFixedPitch(const FontDescription& fontDescription) const in isFixedPitch() function
DFontPlatformData.h107 bool isFixedPitch() const;
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
DBreakingContextInlineHeaders.h516 …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/
DSkOTTable_post.h38 SK_OT_ULONG isFixedPitch; member
/external/chromium_org/third_party/skia/src/sfnt/
DSkOTTable_post.h38 SK_OT_ULONG isFixedPitch; member
/external/skia/src/core/
DSkTypeface.cpp23 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/
DSkTypeface.cpp23 SkTypeface::SkTypeface(Style style, SkFontID fontID, bool isFixedPitch) in SkTypeface() argument
24 : fUniqueID(fontID), fStyle(style), fIsFixedPitch(isFixedPitch) { in SkTypeface()
/external/freetype/include/
Dtttables.h424 FT_ULong isFixedPitch; member
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
Dtttables.h420 FT_ULong isFixedPitch; member
/external/chromium_org/third_party/freetype/include/freetype/
Dtttables.h420 FT_ULong isFixedPitch; member
/external/pdfium/core/include/thirdparties/freetype/freetype/
Dtttables.h420 FT_ULong isFixedPitch; member
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
DSimpleFontDataSkia.cpp204 m_treatAsFixedPitch = platformData().isFixedPitch(); in determinePitch()
/external/freetype/src/sfnt/
Dttload.c1124 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/
Dttload.c1107 FT_FRAME_ULONG( isFixedPitch ), in tt_face_load_post()
1127 FT_TRACE3(( "isFixedPitch: %s\n", post->isFixedPitch in tt_face_load_post()

12