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

  /external/webkit/Source/WebKit/chromium/src/
WebTextRun.cpp 42 return TextRun(text, false, 0, 0, TextRun::AllowTrailingExpansion, rtl, directionalOverride);
  /external/webkit/Source/WebCore/platform/graphics/
TextRun.h 38 AllowTrailingExpansion = 1 << 0,
45 TextRun(const UChar* c, int len, bool allowTabs = false, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, bool rtl = false, bool directionalOverride = false)
65 TextRun(const String& s, bool allowTabs = false, float xpos = 0, float expansion = 0, ExpansionBehavior expansionBehavior = AllowTrailingExpansion | ForbidLeadingExpansion, bool rtl = false, bool directionalOverride = false)
102 bool allowsTrailingExpansion() const { return m_expansionBehavior & AllowTrailingExpansion; }
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextMetrics.cpp 85 , TextRun::AllowTrailingExpansion
SVGInlineTextBox.cpp 416 , TextRun::AllowTrailingExpansion
  /external/webkit/Source/WebCore/rendering/
EllipsisBox.cpp 56 context->drawText(style->font(), TextRun(str.characters(), str.length(), false, 0, 0, TextRun::AllowTrailingExpansion, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + style->fontMetrics().ascent()));
77 return enclosingIntRect(f.selectionRectForText(TextRun(m_str.characters(), m_str.length(), false, 0, 0, TextRun::AllowTrailingExpansion, false, style->visuallyOrdered()),
97 context->drawHighlightForText(font, TextRun(m_str.characters(), m_str.length(), false, 0, 0, TextRun::AllowTrailingExpansion, false, style->visuallyOrdered()),
InlineTextBox.h 177 | (m_expansion && nextLeafChild() ? TextRun::AllowTrailingExpansion : TextRun::ForbidTrailingExpansion);
RenderFileUploadControl.cpp 225 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, !style()->isLeftToRightDirection(), style()->unicodeBidi() == Override);
282 float charWidth = style()->font().width(TextRun(&ch, 1, false, 0, 0, TextRun::AllowTrailingExpansion, false));
RenderTextControl.cpp 555 return style()->font().width(TextRun(&ch, 1, false, 0, 0, TextRun::AllowTrailingExpansion, false));
650 TextRun textRun(placeholderText.characters(), placeholderText.length(), false, 0, 0, TextRun::AllowTrailingExpansion, !placeholderStyle->isLeftToRightDirection(), placeholderStyle->unicodeBidi() == Override);
RenderListBox.cpp 120 float textWidth = itemFont.width(TextRun(text.impl(), false, 0, 0, TextRun::AllowTrailingExpansion, false, false));
392 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, !itemStyle->isLeftToRightDirection(), itemStyle->unicodeBidi() == Override);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebPopupMenuWin.cpp 119 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, itemText.defaultWritingDirection() == WTF::Unicode::RightToLeft);
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontWinCE.cpp 89 , parentTextRun.allowsTrailingExpansion() ? TextRun::AllowTrailingExpansion : TextRun::ForbidTrailingExpansion
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp     [all...]
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 634 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, itemText.defaultWritingDirection() == WTF::Unicode::RightToLeft);
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp     [all...]

Completed in 1612 milliseconds