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

  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 122 int clusterStart;
124 clusterStart = hitIndex;
126 clusterStart = textBreakPreceding(cursorPositionIterator, hitIndex);
127 if (clusterStart == TextBreakDone)
128 clusterStart = 0;
132 return complexTextRun.stringLocation() + clusterStart;
142 if (clusterEnd - clusterStart > 1) {
145 while (firstGlyphBeforeCluster >= 0 && complexTextRun.indexAt(firstGlyphBeforeCluster) >= clusterStart && complexTextRun.indexAt(firstGlyphBeforeCluster) < clusterEnd) {
152 while (firstGlyphAfterCluster < complexTextRun.glyphCount() && complexTextRun.indexAt(firstGlyphAfterCluster) >= clusterStart && complexTextRun.indexAt(firstGlyphAfterCluster) < clusterEnd) {
161 return complexTextRun.stringLocation() + (m_run.ltr() ? clusterStart : clusterEnd)
    [all...]

Completed in 79 milliseconds