HomeSort by relevance Sort by last modified time
    Searched refs:m_treatAsFixedPitch (Results 1 - 13 of 13) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/pango/
SimpleFontDataPango.cpp 136 m_treatAsFixedPitch = false;
140 m_treatAsFixedPitch = m_platformData.isFixedPitch();
  /external/webkit/Source/WebCore/platform/graphics/qt/
SimpleFontDataQt.cpp 33 m_treatAsFixedPitch = m_platformData.font().fixedPitch();
  /external/webkit/Source/WebCore/platform/graphics/wx/
SimpleFontDataWx.cpp 135 m_treatAsFixedPitch = m_platformData.font()->IsFixedWidth();
137 m_treatAsFixedPitch = false;
  /external/webkit/Source/WebCore/platform/graphics/haiku/
SimpleFontDataHaiku.cpp 105 m_treatAsFixedPitch = m_platformData.font() && m_platformData.font()->IsFixed();
  /external/webkit/Source/WebCore/platform/graphics/android/
FontDataAndroid.cpp 115 m_treatAsFixedPitch = m_platformData.isFixedPitch();
  /external/webkit/Source/WebCore/platform/graphics/freetype/
SimpleFontDataFreeType.cpp 138 m_treatAsFixedPitch = m_platformData.isFixedPitch();
  /external/webkit/Source/WebCore/platform/graphics/
SimpleFontData.cpp 54 , m_treatAsFixedPitch(false)
69 , m_treatAsFixedPitch(false)
SimpleFontData.h 129 Pitch pitch() const { return m_treatAsFixedPitch ? FixedPitch : VariablePitch; }
215 bool m_treatAsFixedPitch;
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataWin.cpp 186 m_treatAsFixedPitch = false;
190 // TEXTMETRICS have this. Set m_treatAsFixedPitch based off that.
199 m_treatAsFixedPitch = ((tm.tmPitchAndFamily & TMPF_FIXED_PITCH) == 0);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataChromiumWin.cpp 154 // TEXTMETRICS have this. Set m_treatAsFixedPitch based off that.
171 m_treatAsFixedPitch = ((textMetric.tmPitchAndFamily & TMPF_FIXED_PITCH) == 0);
SimpleFontDataLinux.cpp 212 m_treatAsFixedPitch = platformData().isFixedPitch();
  /external/webkit/Source/WebCore/platform/graphics/wince/
SimpleFontDataWinCE.cpp 146 m_treatAsFixedPitch = !(tm.tmPitchAndFamily & TMPF_FIXED_PITCH);
  /external/webkit/Source/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 453 m_treatAsFixedPitch = ([f isFixedPitch] || [f _isFakeFixedPitch] ||

Completed in 619 milliseconds