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

  /external/webkit/WebCore/platform/graphics/win/
UniscribeController.cpp 143 bool forceSmallCaps = isSmallCaps && (U_GET_GC_MASK(c) & U_GC_M_MASK);
144 nextFontData = m_font.glyphDataForCharacter(*curr, false, forceSmallCaps).fontData;
146 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c;
148 smallCapsBuffer[index] = forceSmallCaps ? c : newC;
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 235 bool forceSmallCaps = !isSurrogate && isSmallCaps && (U_GET_GC_MASK(c) & U_GC_M_MASK);
247 nextGlyphData = m_font.glyphDataForCharacter(*curr, false, forceSmallCaps);
250 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c;
252 m_smallCapsBuffer[index] = forceSmallCaps ? c : newC;
  /external/webkit/WebCore/platform/graphics/
FontFastPath.cpp 44 GlyphData Font::glyphDataForCharacter(UChar32 c, bool mirror, bool forceSmallCaps) const
48 bool useSmallCapsFont = forceSmallCaps;
Font.h 129 GlyphData glyphDataForCharacter(UChar32, bool mirror, bool forceSmallCaps = false) const;

Completed in 772 milliseconds