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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/harfbuzz/
HarfBuzzShaper.cpp 198 m_normalizedBuffer = adoptArrayPtr(new UChar[m_run.length() + 1]);
200 normalizeCharacters(m_run, m_normalizedBuffer.get(), m_normalizedBufferLength);
280 m_normalizedBuffer = adoptArrayPtr(new UChar[m_normalizedBufferLength + 1]);
281 normalizeSpacesAndMirrorChars(sourceText, m_normalizedBuffer.get(), m_normalizedBufferLength, normalizeMode);
287 return index && isCodepointSpace(m_normalizedBuffer[index]);
391 const UChar* normalizedBufferEnd = m_normalizedBuffer.get() + m_normalizedBufferLength;
392 SurrogatePairAwareTextIterator iterator(m_normalizedBuffer.get(), 0, m_normalizedBufferLength, m_normalizedBufferLength);
479 if (m_font->isSmallCaps() && u_islower(m_normalizedBuffer[currentRun->startIndex()])) {
480 String upperText = String(m_normalizedBuffer.get() + currentRun->startIndex(), currentRun->numCharacters());
483 ASSERT(!upperText.is8Bit()); // m_normalizedBuffer is 16 bit, therefore upperText is 16 bit, even after we call makeUpper()
    [all...]
HarfBuzzShaper.h 132 OwnArrayPtr<UChar> m_normalizedBuffer;

Completed in 48 milliseconds