indexAt 134 Source/platform/fonts/mac/ComplexTextController.cpp CFIndex hitGlyphStart = complexTextRun.indexAt(j); indexAt 137 Source/platform/fonts/mac/ComplexTextController.cpp hitGlyphEnd = max<CFIndex>(hitGlyphStart, j + 1 < complexTextRun.glyphCount() ? complexTextRun.indexAt(j + 1) : static_cast<CFIndex>(complexTextRun.indexEnd())); indexAt 139 Source/platform/fonts/mac/ComplexTextController.cpp hitGlyphEnd = max<CFIndex>(hitGlyphStart, j > 0 ? complexTextRun.indexAt(j - 1) : static_cast<CFIndex>(complexTextRun.indexEnd())); indexAt 170 Source/platform/fonts/mac/ComplexTextController.cpp while (firstGlyphBeforeCluster >= 0 && complexTextRun.indexAt(firstGlyphBeforeCluster) >= clusterStart && complexTextRun.indexAt(firstGlyphBeforeCluster) < clusterEnd) { indexAt 177 Source/platform/fonts/mac/ComplexTextController.cpp while (firstGlyphAfterCluster < complexTextRun.glyphCount() && complexTextRun.indexAt(firstGlyphAfterCluster) >= clusterStart && complexTextRun.indexAt(firstGlyphAfterCluster) < clusterEnd) { indexAt 338 Source/platform/fonts/mac/ComplexTextController.cpp ASSERT(indexAt(i) < static_cast<CFIndex>(m_stringLength)); indexAt 339 Source/platform/fonts/mac/ComplexTextController.cpp mappedIndices[indexAt(i)] = true; indexAt 345 Source/platform/fonts/mac/ComplexTextController.cpp for (size_t j = indexAt(i) + 1; j < m_stringLength; ++j) { indexAt 457 Source/platform/fonts/mac/ComplexTextController.cpp unsigned glyphStartOffset = complexTextRun.indexAt(g); indexAt 461 Source/platform/fonts/mac/ComplexTextController.cpp glyphEndOffset = max<unsigned>(glyphStartOffset, static_cast<unsigned>(g + 1 < glyphCount ? complexTextRun.indexAt(g + 1) : complexTextRun.indexEnd())); indexAt 463 Source/platform/fonts/mac/ComplexTextController.cpp glyphEndOffset = max<unsigned>(glyphStartOffset, static_cast<unsigned>(g > 0 ? complexTextRun.indexAt(g - 1) : complexTextRun.indexEnd())); indexAt 537 Source/platform/fonts/mac/ComplexTextController.cpp CFIndex characterIndex = complexTextRun.indexAt(i); indexAt 551 Source/platform/fonts/mac/ComplexTextController.cpp nextCh = *(cp + complexTextRun.indexAt(i + 1)); indexAt 553 Source/platform/fonts/mac/ComplexTextController.cpp nextCh = *(m_complexTextRuns[r + 1]->characters() + m_complexTextRuns[r + 1]->indexAt(0)); indexAt 92 Source/platform/fonts/mac/ComplexTextController.h ALWAYS_INLINE CFIndex indexAt(size_t i) const;