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

  /external/webkit/WebCore/platform/graphics/
Font.h 184 static bool treatAsSpace(UChar c) { return c == ' ' || c == '\t' || c == '\n' || c == 0x00A0; }
189 if (treatAsSpace(character))
  /external/webkit/WebCore/platform/graphics/chromium/
UniscribeHelper.cpp 45 // runs. Note that this must match Font::treatAsSpace so we all agree where
48 static bool treatAsSpace(UChar c)
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 79 if (Font::treatAsSpace(m_run[s]))
458 bool treatAsSpace = Font::treatAsSpace(ch);
459 CGGlyph glyph = treatAsSpace ? fontData->spaceGlyph() : glyphs[i];
460 CGSize advance = treatAsSpace ? CGSizeMake(fontData->spaceWidth(), advances[i].height) : advances[i];
465 } else if (ch == zeroWidthSpace || Font::treatAsZeroWidthSpace(ch) && !treatAsSpace) {
505 if (treatAsSpace && characterIndex > 0 && !Font::treatAsSpace(*m_run.data(characterIndex - 1)) && m_font.wordSpacing())

Completed in 33 milliseconds