Searched refs:nextIsSmallCaps (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/win/
H A DUniscribeController.cpp133 bool nextIsSmallCaps = m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr; local
135 if (nextIsSmallCaps)
144 isSmallCaps = nextIsSmallCaps;
151 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c;
152 if (nextIsSmallCaps)
159 if (nextFontData != fontData || nextIsSmallCaps != isSmallCaps) {
175 itemizeShapeAndPlace((nextIsSmallCaps ? smallCapsBuffer.data() : cp) + itemStart, itemLength, nextFontData, glyphBuffer);
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DComplexTextController.cpp213 bool nextIsSmallCaps = !isSurrogate && m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr; local
215 if (nextIsSmallCaps)
224 isSmallCaps = nextIsSmallCaps;
243 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c;
244 if (nextIsSmallCaps)
248 if (nextGlyphData.fontData != glyphData.fontData || nextIsSmallCaps != isSmallCaps || !nextGlyphData.glyph != !glyphData.glyph) {
259 collectComplexTextRunsForCharacters((nextIsSmallCaps ? m_smallCapsBuffer.data() : cp) + itemStart, itemLength, itemStart, nextGlyphData.glyph ? nextGlyphData.fontData : 0);

Completed in 97 milliseconds