Home
last modified time | relevance | path

Searched refs:clusterEnd (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/platform/graphics/mac/
DCoreTextController.cpp172 int clusterEnd = textBreakFollowing(characterIterator, hitIndex); in offsetForPosition() local
173 if (clusterEnd == TextBreakDone) in offsetForPosition()
174 clusterEnd = stringLength; in offsetForPosition()
180 if (clusterEnd - clusterStart > 1) { in offsetForPosition()
182 …GlyphBeforeCluster) >= clusterStart && coreTextRun.indexAt(firstGlyphBeforeCluster) < clusterEnd) { in offsetForPosition()
189 …stGlyphAfterCluster) >= clusterStart && coreTextRun.indexAt(firstGlyphAfterCluster) < clusterEnd) { in offsetForPosition()
195 return coreTextRun.stringLocation() + (m_run.ltr() ? clusterStart : clusterEnd); in offsetForPosition()
197 return coreTextRun.stringLocation() + (m_run.ltr() ? clusterEnd : clusterStart); in offsetForPosition()