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

  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 105 const ComplexTextRun& complexTextRun = *m_complexTextRuns[r];
106 for (unsigned j = 0; j < complexTextRun.glyphCount(); ++j) {
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());
120 int stringLength = complexTextRun.stringLength()
    [all...]
ComplexTextControllerATSUI.cpp 43 OSStatus ComplexTextController::ComplexTextRun::overrideLayoutOperation(ATSULayoutOperationSelector, ATSULineRef atsuLineRef, URefCon refCon, void*, ATSULayoutOperationCallbackStatus* callbackStatus)
45 ComplexTextRun* complexTextRun = reinterpret_cast<ComplexTextRun*>(refCon);
60 if (complexTextRun->m_directionalOverride) {
66 complexTextRun->m_glyphCount = count;
67 complexTextRun->m_glyphsVector.reserveCapacity(count);
68 complexTextRun->m_advancesVector.reserveCapacity(count);
69 complexTextRun->m_atsuiIndices.reserveCapacity(count);
76 complexTextRun->m_glyphCount--
    [all...]

Completed in 908 milliseconds