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

  /external/webkit/WebCore/platform/graphics/
Font.h 91 bool isSmallCaps() const { return m_fontDescription.smallCaps(); }
  /external/webkit/WebCore/platform/graphics/win/
UniscribeController.cpp 115 if (m_font.isSmallCaps())
127 bool isSmallCaps;
128 bool nextIsSmallCaps = m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
139 isSmallCaps = nextIsSmallCaps;
143 bool forceSmallCaps = isSmallCaps && (U_GET_GC_MASK(c) & U_GC_M_MASK);
145 if (m_font.isSmallCaps()) {
154 if (nextFontData != fontData || nextIsSmallCaps != isSmallCaps) {
158 itemizeShapeAndPlace((isSmallCaps ? smallCapsBuffer.data() : cp) + itemStart, itemLength, fontData, glyphBuffer);
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 183 if (m_font.isSmallCaps() || hasTrailingSoftHyphen)
219 bool isSmallCaps;
220 bool nextIsSmallCaps = !isSurrogate && m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
231 isSmallCaps = nextIsSmallCaps;
235 bool forceSmallCaps = !isSurrogate && isSmallCaps && (U_GET_GC_MASK(c) & U_GC_M_MASK);
249 if (!isSurrogate && m_font.isSmallCaps()) {
255 if (nextGlyphData.fontData != glyphData.fontData || nextIsSmallCaps != isSmallCaps || !nextGlyphData.glyph != !glyphData.glyph) {
258 collectComplexTextRunsForCharacters((isSmallCaps ? m_smallCapsBuffer.data() : cp) + itemStart, itemLength, itemStart, glyphData.glyph ? glyphData.fontData : 0);

Completed in 38 milliseconds