HomeSort by relevance Sort by last modified time
    Searched defs:forceSmallCaps (Results 1 - 2 of 2) 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;

Completed in 45 milliseconds