HomeSort by relevance Sort by last modified time
    Searched full:clusterend (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
ComplexTextController.cpp 220 int clusterEnd = textBreakFollowing(cursorPositionIterator, hitIndex);
221 if (clusterEnd == TextBreakDone)
222 clusterEnd = stringLength;
228 if (clusterEnd - clusterStart > 1) {
231 while (firstGlyphBeforeCluster >= 0 && complexTextRun.indexAt(firstGlyphBeforeCluster) >= clusterStart && complexTextRun.indexAt(firstGlyphBeforeCluster) < clusterEnd) {
238 while (firstGlyphAfterCluster < complexTextRun.glyphCount() && complexTextRun.indexAt(firstGlyphAfterCluster) >= clusterStart && complexTextRun.indexAt(firstGlyphAfterCluster) < clusterEnd) {
247 return complexTextRun.stringLocation() + (m_run.ltr() ? clusterStart : clusterEnd);
249 return complexTextRun.stringLocation() + (m_run.ltr() ? clusterEnd : clusterStart);

Completed in 1068 milliseconds