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

  /external/webkit/WebCore/platform/graphics/win/
UniscribeController.cpp 128 bool nextIsSmallCaps = m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
130 if (nextIsSmallCaps)
139 isSmallCaps = nextIsSmallCaps;
146 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c;
147 if (nextIsSmallCaps)
154 if (nextFontData != fontData || nextIsSmallCaps != isSmallCaps) {
170 itemizeShapeAndPlace((nextIsSmallCaps ? smallCapsBuffer.data() : cp) + itemStart, itemLength, nextFontData, glyphBuffer);
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 220 bool nextIsSmallCaps = !isSurrogate && m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
222 if (nextIsSmallCaps)
231 isSmallCaps = nextIsSmallCaps;
250 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c;
251 if (nextIsSmallCaps)
255 if (nextGlyphData.fontData != glyphData.fontData || nextIsSmallCaps != isSmallCaps || !nextGlyphData.glyph != !glyphData.glyph) {
266 collectComplexTextRunsForCharacters((nextIsSmallCaps ? m_smallCapsBuffer.data() : cp) + itemStart, itemLength, itemStart, nextGlyphData.glyph ? nextGlyphData.fontData : 0);

Completed in 171 milliseconds