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

  /external/webkit/WebCore/platform/graphics/win/
UniscribeController.cpp 125 UChar newC = 0;
128 bool nextIsSmallCaps = m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
131 smallCapsBuffer[curr - cp] = newC;
146 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c;
148 smallCapsBuffer[index] = forceSmallCaps ? c : newC;
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 217 UChar newC = 0;
220 bool nextIsSmallCaps = !isSurrogate && m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
223 m_smallCapsBuffer[curr - cp] = newC;
250 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c;
252 m_smallCapsBuffer[index] = forceSmallCaps ? c : newC;
  /external/webkit/WebCore/platform/text/
StringImpl.cpp 659 PassRefPtr<StringImpl> StringImpl::replace(UChar oldC, UChar newC)
661 if (oldC == newC)
676 ch = newC;

Completed in 67 milliseconds