HomeSort by relevance Sort by last modified time
    Searched refs:indexAt (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 109 CFIndex hitGlyphStart = complexTextRun.indexAt(j);
112 hitGlyphEnd = max<CFIndex>(hitGlyphStart, j + 1 < complexTextRun.glyphCount() ? complexTextRun.indexAt(j + 1) : complexTextRun.stringLength());
114 hitGlyphEnd = max<CFIndex>(hitGlyphStart, j > 0 ? complexTextRun.indexAt(j - 1) : complexTextRun.stringLength());
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) {
290 CFIndex ComplexTextController::ComplexTextRun::indexAt(size_t i) const
337 ASSERT(indexAt(i) < static_cast<CFIndex>(m_stringLength));
338 mappedIndices[indexAt(i)] = true
    [all...]
ComplexTextController.h 90 ALWAYS_INLINE CFIndex indexAt(size_t i) const;

Completed in 287 milliseconds