OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nextIsSmallCaps
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/win/
UniscribeController.cpp
133
bool
nextIsSmallCaps
= m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
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/
ComplexTextController.cpp
213
bool
nextIsSmallCaps
= !isSurrogate && m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
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 18 milliseconds