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

  /external/chromium_org/third_party/WebKit/Source/platform/text/
SurrogatePairAwareTextIterator.h 36 inline bool consume(UChar32& character, unsigned& clusterLength)
42 clusterLength = 1;
47 return consumeSlowCase(character, clusterLength);
SurrogatePairAwareTextIterator.cpp 41 bool SurrogatePairAwareTextIterator::consumeSlowCase(UChar32& character, unsigned& clusterLength)
49 clusterLength = 2;
71 clusterLength = 2;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
Latin1TextIterator.h 40 bool consume(UChar32& character, unsigned& clusterLength)
46 clusterLength = 1;
WidthIterator.cpp 79 m_run.rtl(), charData.characterOffset, charData.clusterLength);
141 || (m_run.ltr() && charData.characterOffset + charData.clusterLength < static_cast<size_t>(m_run.length()))
188 while (textIterator.consume(charData.character, charData.clusterLength)) {
223 textIterator.advance(charData.clusterLength);
WidthIterator.h 78 unsigned clusterLength;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGGlyphMap.h 194 unsigned clusterLength = 0;
195 while (textIterator.consume(character, clusterLength)) {
202 textIterator.advance(clusterLength);
215 unsigned clusterLength = 0;
216 while (textIterator.consume(character, clusterLength)) {
221 textIterator.advance(clusterLength);
233 unsigned clusterLength = 0;
234 while (textIterator.consume(character, clusterLength)) {
240 textIterator.advance(clusterLength);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.cpp 584 unsigned clusterLength,
591 int markLength = clusterLength;
623 unsigned clusterLength = 0;
626 if (!iterator.consume(character, clusterLength))
641 for (iterator.advance(clusterLength); iterator.consume(character, clusterLength); iterator.advance(clusterLength)) {
645 int length = handleMultipleUChar(character, clusterLength, currentFontData, currentCharacterPosition, iterator.characters() + clusterLength, normalizedBufferEnd);
647 clusterLength = length
    [all...]

Completed in 197 milliseconds