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

1 2

  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_linux.cpp 29 SkTypeface::Style* style, bool* isFixedPitch);
36 SkTypeface_Custom(Style style, bool sysFont, bool isFixedPitch, const SkString familyName)
37 : INHERITED(style, SkTypefaceCache::NewFontID(), isFixedPitch)
79 bool isFixedPitch, const SkString familyName)
80 : INHERITED(style, sysFont, isFixedPitch, familyName)
102 bool isFixedPitch, const SkString familyName)
103 : INHERITED(style, sysFont, isFixedPitch, familyName)
269 bool isFixedPitch;
272 if (find_name_and_attributes(stream, &name, &style, &isFixedPitch)) {
273 return SkNEW_ARGS(SkTypeface_Stream, (style, false, stream, isFixedPitch, name))
    [all...]
SkFontHost_FreeType_common.h 49 SkTypeface_FreeType(Style style, SkFontID uniqueID, bool isFixedPitch)
50 : INHERITED(style, uniqueID, isFixedPitch)
SkFontHost_mac.cpp 359 static SkTypeface::Style computeStyleBits(CTFontRef font, bool* isFixedPitch) {
369 if (isFixedPitch) {
370 *isFixedPitch = (traits & kCTFontMonoSpaceTrait) != 0;
428 SkTypeface_Mac(SkTypeface::Style style, SkFontID fontID, bool isFixedPitch,
430 : SkTypeface(style, fontID, isFixedPitch)
438 SkTypeface_Mac(const SkFontStyle& fs, SkFontID fontID, bool isFixedPitch,
440 : SkTypeface(fontstyle2stylebits(fs), fontID, isFixedPitch)
478 bool isFixedPitch;
479 SkTypeface::Style style = computeStyleBits(fontRef, &isFixedPitch);
482 return new SkTypeface_Mac(style, fontID, isFixedPitch, fontRef, name)
    [all...]
  /external/skia/src/ports/
SkFontHost_linux.cpp 29 SkTypeface::Style* style, bool* isFixedPitch);
36 SkTypeface_Custom(Style style, bool sysFont, bool isFixedPitch, const SkString familyName)
37 : INHERITED(style, SkTypefaceCache::NewFontID(), isFixedPitch)
79 bool isFixedPitch, const SkString familyName)
80 : INHERITED(style, sysFont, isFixedPitch, familyName)
102 bool isFixedPitch, const SkString familyName)
103 : INHERITED(style, sysFont, isFixedPitch, familyName)
269 bool isFixedPitch;
272 if (find_name_and_attributes(stream, &name, &style, &isFixedPitch)) {
273 return SkNEW_ARGS(SkTypeface_Stream, (style, false, stream, isFixedPitch, name))
    [all...]
SkFontHost_FreeType_common.h 49 SkTypeface_FreeType(Style style, SkFontID uniqueID, bool isFixedPitch)
50 : INHERITED(style, uniqueID, isFixedPitch)
SkFontHost_mac.cpp 359 static SkTypeface::Style computeStyleBits(CTFontRef font, bool* isFixedPitch) {
369 if (isFixedPitch) {
370 *isFixedPitch = (traits & kCTFontMonoSpaceTrait) != 0;
428 SkTypeface_Mac(SkTypeface::Style style, SkFontID fontID, bool isFixedPitch,
430 : SkTypeface(style, fontID, isFixedPitch)
438 SkTypeface_Mac(const SkFontStyle& fs, SkFontID fontID, bool isFixedPitch,
440 : SkTypeface(fontstyle2stylebits(fs), fontID, isFixedPitch)
478 bool isFixedPitch;
479 SkTypeface::Style style = computeStyleBits(fontRef, &isFixedPitch);
482 return new SkTypeface_Mac(style, fontID, isFixedPitch, fontRef, name)
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkTypeface.h 67 bool isFixedPitch() const { return fIsFixedPitch; }
288 SkTypeface(Style style, SkFontID uniqueID, bool isFixedPitch = false);
292 void setIsFixedPitch(bool isFixedPitch) { fIsFixedPitch = isFixedPitch; }
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_post.h 38 SK_OT_ULONG isFixedPitch;
  /external/skia/include/core/
SkTypeface.h 67 bool isFixedPitch() const { return fIsFixedPitch; }
288 SkTypeface(Style style, SkFontID uniqueID, bool isFixedPitch = false);
292 void setIsFixedPitch(bool isFixedPitch) { fIsFixedPitch = isFixedPitch; }
  /external/skia/src/sfnt/
SkOTTable_post.h 38 SK_OT_ULONG isFixedPitch;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
FontPlatformDataHarfBuzz.cpp 209 bool FontPlatformData::isFixedPitch() const
211 return typeface() && typeface()->isFixedPitch();
FontPlatformDataHarfBuzz.h 71 bool isFixedPitch() const;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontFallbackList.h 72 bool isFixedPitch(const FontDescription& fontDescription) const
Font.h 104 bool isFixedPitch() const;
201 inline bool Font::isFixedPitch() const
204 return m_fontFallbackList->isFixedPitch(m_fontDescription);
FontPlatformData.h 112 bool isFixedPitch() const;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 509 ALWAYS_INLINE float textWidth(RenderText* text, unsigned from, unsigned len, const Font& font, float xPos, bool isFixedPitch, bool collapseWhiteSpace, HashSet<const SimpleFontData*>* fallbackFonts = 0)
512 if (isFixedPitch || (!from && len == text->textLength()) || text->style()->hasTextCombine())
551 bool isFixedPitch = font.isFixedPitch();
615 charWidth = textWidth(renderText, m_current.offset(), midWordBreakIsBeforeSurrogatePair ? 2 : 1, font, m_width.committedWidth() + wrapW, isFixedPitch, m_collapseWhiteSpace, 0);
651 additionalTempWidth = textWidth(renderText, lastSpace, m_current.offset() + 1 - lastSpace, font, m_width.currentWidth(), isFixedPitch, m_collapseWhiteSpace, &wordMeasurement.fallbackFonts) - wordTrailingSpaceWidth;
653 additionalTempWidth = textWidth(renderText, lastSpace, m_current.offset() - lastSpace, font, m_width.currentWidth(), isFixedPitch, m_collapseWhiteSpace, &wordMeasurement.fallbackFonts);
677 float charWidth = textWidth(renderText, m_current.offset(), 1, font, m_width.currentWidth(), isFixedPitch, m_collapseWhiteSpace, &wordMeasurement.fallbackFonts) + (applyWordSpacing ? wordSpacing : 0);
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkTypeface.cpp 23 SkTypeface::SkTypeface(Style style, SkFontID fontID, bool isFixedPitch)
24 : fUniqueID(fontID), fStyle(style), fIsFixedPitch(isFixedPitch) {
  /external/skia/src/core/
SkTypeface.cpp 23 SkTypeface::SkTypeface(Style style, SkFontID fontID, bool isFixedPitch)
24 : fUniqueID(fontID), fStyle(style), fIsFixedPitch(isFixedPitch) {
  /external/chromium_org/third_party/freetype/include/freetype/
tttables.h 420 FT_ULong isFixedPitch;
    [all...]
  /external/freetype/include/
tttables.h 424 FT_ULong isFixedPitch;
    [all...]
  /external/pdfium/core/include/thirdparties/freetype/freetype/
tttables.h 420 FT_ULong isFixedPitch;
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
tttables.h 420 FT_ULong isFixedPitch;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
SimpleFontDataSkia.cpp 205 m_treatAsFixedPitch = platformData().isFixedPitch();
  /external/chromium_org/third_party/freetype/src/sfnt/
ttload.c     [all...]
  /external/freetype/src/sfnt/
ttload.c     [all...]

Completed in 632 milliseconds

1 2