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

  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextControllerCoreText.cpp 54 m_coreTextIndicesData.adoptCF(CFDataCreateMutable(kCFAllocatorDefault, m_glyphCount * sizeof(CFIndex)));
55 CFDataIncreaseLength(m_coreTextIndicesData.get(), m_glyphCount * sizeof(CFIndex));
56 m_coreTextIndices = reinterpret_cast<const CFIndex*>(CFDataGetMutableBytePtr(m_coreTextIndicesData.get()));
97 m_coreTextIndicesData.adoptCF(CFDataCreateMutable(kCFAllocatorDefault, m_glyphCount * sizeof(CFIndex)));
98 CFDataAppendBytes(m_coreTextIndicesData.get(), reinterpret_cast<const UInt8*>(indices.data()), m_glyphCount * sizeof(CFIndex));
99 m_coreTextIndices = reinterpret_cast<const CFIndex*>(CFDataGetBytePtr(m_coreTextIndicesData.get()));
ComplexTextController.h 124 RetainPtr<CFMutableDataRef> m_coreTextIndicesData;

Completed in 1211 milliseconds