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

  /external/webkit/Source/WebCore/platform/graphics/mac/
GlyphPageTreeNodeMac.cpp 94 CTRunRef ctRun = static_cast<CTRunRef>(CFArrayGetValueAtIndex(runArray, r));
95 ASSERT(CFGetTypeID(ctRun) == CTRunGetTypeID());
97 CFDictionaryRef attributes = CTRunGetAttributes(ctRun);
103 CFIndex glyphCount = CTRunGetGlyphCount(ctRun);
104 const CGGlyph* glyphs = CTRunGetGlyphsPtr(ctRun);
107 CTRunGetGlyphs(ctRun, CFRangeMake(0, 0), glyphVector.data());
110 const CFIndex* stringIndices = CTRunGetStringIndicesPtr(ctRun);
113 CTRunGetStringIndices(ctRun, CFRangeMake(0, 0), indexVector.data());
ComplexTextControllerCoreText.cpp 45 ComplexTextController::ComplexTextRun::ComplexTextRun(CTRunRef ctRun, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, CFRange runRange)
53 m_glyphCount = CTRunGetGlyphCount(ctRun);
54 m_coreTextIndices = CTRunGetStringIndicesPtr(ctRun);
57 CTRunGetStringIndices(ctRun, CFRangeMake(0, 0), m_coreTextIndicesVector.data());
61 m_glyphs = CTRunGetGlyphsPtr(ctRun);
64 CTRunGetGlyphs(ctRun, CFRangeMake(0, 0), m_glyphsVector.data());
68 m_advances = CTRunGetAdvancesPtr(ctRun);
71 CTRunGetAdvances(ctRun, CFRangeMake(0, 0), m_advancesVector.data());
168 CTRunRef ctRun = static_cast<CTRunRef>(CFArrayGetValueAtIndex(runArray, r));
169 ASSERT(CFGetTypeID(ctRun) == CTRunGetTypeID())
    [all...]
ComplexTextController.h 72 static PassRefPtr<ComplexTextRun> create(CTRunRef ctRun, const SimpleFontData* fontData, const UChar* characters, unsigned stringLocation, size_t stringLength, CFRange runRange)
74 return adoptRef(new ComplexTextRun(ctRun, fontData, characters, stringLocation, stringLength, runRange));

Completed in 775 milliseconds