HomeSort by relevance Sort by last modified time
    Searched defs:treatAsSpace (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/
WidthIterator.cpp 164 bool treatAsSpace = Font::treatAsSpace(c);
165 if (treatAsSpace || (expandAroundIdeographs && Font::isCJKIdeographOrSymbol(c))) {
168 if (!treatAsSpace && !m_isAfterExpansion) {
190 if (treatAsSpace && currentCharacter && !Font::treatAsSpace(cp[-1]) && m_font->wordSpacing())
Font.h 211 static bool treatAsSpace(UChar c) { return c == ' ' || c == '\t' || c == '\n' || c == noBreakSpace; }
218 if (treatAsSpace(character))
  /external/webkit/Source/WebCore/platform/graphics/win/
UniscribeController.cpp 63 if (Font::treatAsSpace(m_run[s]))
274 bool treatAsSpace = Font::treatAsSpace(ch);
276 if (treatAsSpace || treatAsZeroWidthSpace) {
280 advances[clusters[k]] = treatAsSpace ? logicalSpaceWidth : 0;
281 if (treatAsSpace)
331 if (characterIndex > 0 && !Font::treatAsSpace(*m_run.data(characterIndex - 1)) && m_font.wordSpacing())
  /external/webkit/Source/WebCore/platform/graphics/chromium/
UniscribeHelper.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.cpp 453 bool treatAsSpace = Font::treatAsSpace(ch);
454 CGGlyph glyph = treatAsSpace ? fontData->spaceGlyph() : glyphs[i];
455 CGSize advance = treatAsSpace ? CGSizeMake(fontData->spaceWidth(), advances[i].height) : advances[i];
460 } else if (ch == zeroWidthSpace || (Font::treatAsZeroWidthSpace(ch) && !treatAsSpace)) {
478 if (treatAsSpace || Font::isCJKIdeographOrSymbol(ch)) {
481 if (!treatAsSpace && !m_afterExpansion) {
499 if (treatAsSpace && characterIndex > 0 && !Font::treatAsSpace(*m_run.data(characterIndex - 1)) && m_font.wordSpacing())

Completed in 1594 milliseconds