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

  /external/webkit/Source/WebCore/platform/graphics/
Font.h 106 bool isSmallCaps() const { return m_fontDescription.smallCaps(); }
  /external/webkit/Source/WebCore/platform/graphics/win/
UniscribeController.cpp 120 if (m_font.isSmallCaps())
132 bool isSmallCaps;
133 bool nextIsSmallCaps = m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
144 isSmallCaps = nextIsSmallCaps;
148 bool forceSmallCaps = isSmallCaps && (U_GET_GC_MASK(c) & U_GC_M_MASK);
150 if (m_font.isSmallCaps()) {
159 if (nextFontData != fontData || nextIsSmallCaps != isSmallCaps) {
163 itemizeShapeAndPlace((isSmallCaps ? smallCapsBuffer.data() : cp) + itemStart, itemLength, fontData, glyphBuffer);
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.cpp 186 if (m_font.isSmallCaps())
212 bool isSmallCaps;
213 bool nextIsSmallCaps = !isSurrogate && m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
224 isSmallCaps = nextIsSmallCaps;
228 bool forceSmallCaps = !isSurrogate && isSmallCaps && (U_GET_GC_MASK(c) & U_GC_M_MASK);
242 if (!isSurrogate && m_font.isSmallCaps()) {
248 if (nextGlyphData.fontData != glyphData.fontData || nextIsSmallCaps != isSmallCaps || !nextGlyphData.glyph != !glyphData.glyph) {
251 collectComplexTextRunsForCharacters((isSmallCaps ? m_smallCapsBuffer.data() : cp) + itemStart, itemLength, itemStart, glyphData.glyph ? glyphData.fontData : 0);

Completed in 70 milliseconds