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

  /external/webkit/WebCore/platform/graphics/
TextRun.h 36 TextRun(const UChar* c, int len, bool allowTabs = false, int xpos = 0, int padding = 0, bool rtl = false, bool directionalOverride = false,
42 , m_allowTabs(allowTabs)
55 TextRun(const String& s, bool allowTabs = false, int xpos = 0, int padding = 0, bool rtl = false, bool directionalOverride = false,
61 , m_allowTabs(allowTabs)
82 bool allowTabs() const { return m_allowTabs; }
WidthIterator.cpp 124 if (c == '\t' && m_run.allowTabs()) {
  /external/webkit/WebCore/rendering/
InlineTextBox.cpp 119 IntRect r = enclosingIntRect(f.selectionRectForText(TextRun(textObj->text()->characters() + m_start, m_len, textObj->allowTabs(), textPos(), m_toAdd, direction() == RTL, m_dirOverride),
475 TextRun textRun(textRenderer()->text()->characters() + m_start, m_len, textRenderer()->allowTabs(), textPos(), m_toAdd, direction() == RTL, m_dirOverride || styleToUse->visuallyOrdered());
598 context->drawHighlightForText(font, TextRun(textRenderer()->text()->characters() + m_start, length, textRenderer()->allowTabs(), textPos(), m_toAdd,
621 context->drawHighlightForText(font, TextRun(textRenderer()->text()->characters() + m_start, m_len, textRenderer()->allowTabs(), textPos(), m_toAdd,
762 TextRun run(textRenderer()->text()->characters() + m_start, m_len, textRenderer()->allowTabs(), textPos(), m_toAdd, direction() == RTL, m_dirOverride || style->visuallyOrdered());
    [all...]
RenderText.h 119 bool allowTabs() const { return !style()->collapseWhiteSpace(); }
RenderText.cpp 436 int tabWidth = allowTabs() ? monospaceCharacterWidth * 8 : 0;
462 return f.width(TextRun(text()->characters() + start, len, allowTabs(), xPos), fallbackFonts);
736 currMaxWidth += f.width(TextRun(txt + i, 1, allowTabs(), leadWidth + currMaxWidth));
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
FontWince.cpp 87 : m_textRun(start, length, parentTextRun.allowTabs(), 0, 0
  /external/webkit/WebCore/platform/graphics/mac/
ComplexTextController.cpp 462 if (ch == '\t' && m_run.allowTabs()) {

Completed in 1573 milliseconds