HomeSort by relevance Sort by last modified time
    Searched defs:isFixedPitch (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontPlatformData.cpp 316 bool FontPlatformData::isFixedPitch() const
318 return typeface() && typeface()->isFixedPitch();
Font.h 112 bool isFixedPitch() const;
215 inline bool Font::isFixedPitch() const
218 return m_fontFallbackList->isFixedPitch(m_fontDescription);
FontFallbackList.h 68 bool isFixedPitch(const FontDescription& fontDescription) const
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_post.h 38 SK_OT_ULONG isFixedPitch;
  /external/skia/src/sfnt/
SkOTTable_post.h 38 SK_OT_ULONG isFixedPitch;
  /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/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/ports/
SkFontMgr_android.cpp 46 bool isFixedPitch,
48 : INHERITED(style, SkTypefaceCache::NewFontID(), isFixedPitch)
69 bool isFixedPitch,
73 : INHERITED(index, style, isFixedPitch, familyName)
104 bool isFixedPitch,
106 : INHERITED(index, style, isFixedPitch, familyName)
435 bool isFixedPitch;
438 if (!SkTypeface_FreeType::ScanFont(stream, ttcIndex, &name, &style, &isFixedPitch)) {
442 style, isFixedPitch, name));
SkFontHost_mac.cpp 355 static SkTypeface::Style computeStyleBits(CTFontRef font, bool* isFixedPitch) {
365 if (isFixedPitch) {
366 *isFixedPitch = (traits & kCTFontMonoSpaceTrait) != 0;
424 SkTypeface_Mac(SkTypeface::Style style, SkFontID fontID, bool isFixedPitch,
426 : SkTypeface(style, fontID, isFixedPitch)
435 SkTypeface_Mac(const SkFontStyle& fs, SkFontID fontID, bool isFixedPitch,
437 : 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, isLocalStream)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 516 ALWAYS_INLINE float textWidth(RenderText* text, unsigned from, unsigned len, const Font& font, float xPos, bool isFixedPitch, bool collapseWhiteSpace, HashSet<const SimpleFontData*>* fallbackFonts = 0)
519 if (isFixedPitch || (!from && len == text->textLength()) || text->style()->hasTextCombine())
559 bool isFixedPitch = font.isFixedPitch();
621 charWidth = textWidth(renderText, m_current.offset(), midWordBreakIsBeforeSurrogatePair ? 2 : 1, font, m_width.committedWidth() + wrapW, isFixedPitch, m_collapseWhiteSpace);
657 additionalTempWidth = textWidth(renderText, lastSpace, m_current.offset() + 1 - lastSpace, font, m_width.currentWidth(), isFixedPitch, m_collapseWhiteSpace, &wordMeasurement.fallbackFonts) - wordTrailingSpaceWidth;
659 additionalTempWidth = textWidth(renderText, lastSpace, m_current.offset() - lastSpace, font, m_width.currentWidth(), isFixedPitch, m_collapseWhiteSpace, &wordMeasurement.fallbackFonts);
683 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/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/skia/src/ports/
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...]

Completed in 342 milliseconds