Home
last modified time | relevance | path

Searched refs:forceSmallCaps (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/win/
DUniscribeController.cpp148 bool forceSmallCaps = isSmallCaps && (U_GET_GC_MASK(c) & U_GC_M_MASK); in advance() local
149 …nextFontData = m_font.glyphDataForCharacter(*curr, false, forceSmallCaps ? SmallCapsVariant : Auto… in advance()
151 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c; in advance()
153 smallCapsBuffer[index] = forceSmallCaps ? c : newC; in advance()
/external/webkit/Source/WebCore/platform/graphics/mac/
DComplexTextController.cpp228 bool forceSmallCaps = !isSurrogate && isSmallCaps && (U_GET_GC_MASK(c) & U_GC_M_MASK); in collectComplexTextRuns() local
240 …nextGlyphData = m_font.glyphDataForCharacter(*curr, false, forceSmallCaps ? SmallCapsVariant : Aut… in collectComplexTextRuns()
243 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c; in collectComplexTextRuns()
245 m_smallCapsBuffer[index] = forceSmallCaps ? c : newC; in collectComplexTextRuns()
/external/webkit/Source/WebCore/
DChangeLog-2011-02-1640311 … (WebCore::Font::glyphDataForCharacter): Replaced the forceSmallCaps boolean with a FontDataVariant
DChangeLog-2008-08-1066501 (WebCore::Font::glyphDataForCharacter): Added a forceSmallCaps argument