Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
DComplexTextController.cpp193 CFIndex hitGlyphEnd; in offsetForPosition() local
195hitGlyphEnd = max<CFIndex>(hitGlyphStart, j + 1 < complexTextRun.glyphCount() ? complexTextRun.ind… in offsetForPosition()
197hitGlyphEnd = max<CFIndex>(hitGlyphStart, j > 0 ? complexTextRun.indexAt(j - 1) : static_cast<CFIn… in offsetForPosition()
202 …CFIndex hitIndex = hitGlyphStart + (hitGlyphEnd - hitGlyphStart) * (m_run.ltr() ? x / adjustedAdva… in offsetForPosition()
240 clusterWidth = adjustedAdvance / (hitGlyphEnd - hitGlyphStart); in offsetForPosition()
241 … x -= clusterWidth * (m_run.ltr() ? hitIndex - hitGlyphStart : hitGlyphEnd - hitIndex - 1); in offsetForPosition()