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

  /external/opencv/cvaux/src/
cvbgfg_common.cpp 97 CvSeq* newC;
99 newC = cvApproxPoly( c, sizeof(CvContour), tempStorage, CV_POLY_APPROX_DP, 2, 0 );
101 newC = cvConvexHull2( c, tempStorage, CV_CLOCKWISE, 1 );
102 cvSubstituteContour( scanner, newC );
  /external/webkit/Source/WebCore/platform/graphics/win/
UniscribeController.cpp 130 UChar newC = 0;
133 bool nextIsSmallCaps = m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
136 smallCapsBuffer[curr - cp] = newC;
151 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c;
153 smallCapsBuffer[index] = forceSmallCaps ? c : newC;
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.cpp 210 UChar newC = 0;
213 bool nextIsSmallCaps = !isSurrogate && m_font.isSmallCaps() && !(U_GET_GC_MASK(*curr) & U_GC_M_MASK) && (newC = u_toupper(*curr)) != *curr;
216 m_smallCapsBuffer[curr - cp] = newC;
243 nextIsSmallCaps = forceSmallCaps || (newC = u_toupper(c)) != c;
245 m_smallCapsBuffer[index] = forceSmallCaps ? c : newC;

Completed in 65 milliseconds