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

  /external/webkit/Source/WebKit/chromium/public/
WebMenuItemInfo.h 52 , textDirection(WebTextDirectionDefault)
62 WebTextDirection textDirection;
  /external/webkit/Source/WebCore/platform/
PopupMenuStyle.h 32 #include "TextDirection.h"
38 PopupMenuStyle(const Color& foreground, const Color& background, const Font& font, bool visible, bool isDisplayNone, Length textIndent, TextDirection textDirection, bool hasTextDirectionOverride)
45 , m_textDirection(textDirection)
56 TextDirection textDirection() const { return m_textDirection; }
66 TextDirection m_textDirection;
  /external/webkit/Source/WebKit2/Shared/
WebPopupItem.cpp 54 WebPopupItem::WebPopupItem(Type type, const String& text, TextDirection textDirection, bool hasTextDirectionOverride, const String& toolTip, const String& accessibilityText, bool isEnabled, bool isLabel)
57 , m_textDirection(textDirection)
75 uint64_t textDirection;
81 if (!decoder->decode(CoreIPC::Out(type, text, textDirection, hasTextDirectionOverride, toolTip, accessibilityText, isEnabled, isLabel)))
84 item = WebPopupItem(static_cast<Type>(type), text, static_cast<TextDirection>(textDirection), hasTextDirectionOverride, toolTip, accessibilityText, isEnabled, isLabel);
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.h 68 TextDirection textDirection;
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 383 bool EditingStyle::textDirection(WritingDirection& writingDirection) const
461 RefPtr<EditingStyle> textDirection = EditingStyle::create();
462 textDirection->m_mutableStyle = CSSMutableStyleDeclaration::create();
463 textDirection->m_mutableStyle->setProperty(CSSPropertyUnicodeBidi, CSSValueEmbed, m_mutableStyle->getPropertyPriority(CSSPropertyUnicodeBidi));
464 textDirection->m_mutableStyle->setProperty(CSSPropertyDirection, m_mutableStyle->getPropertyValue(CSSPropertyDirection),
470 return textDirection;
    [all...]
SelectionController.cpp 340 TextDirection SelectionController::directionOfEnclosingBlock()
823 TextDirection textDirection = directionOfEnclosingBlock();
824 if (direction == DirectionForward || (textDirection == LTR && direction == DirectionRight) || (textDirection == RTL && direction == DirectionLeft))
    [all...]
ApplyStyleCommand.cpp 459 && EditingStyle::create(highestAncestorWithUnicodeBidi, EditingStyle::AllProperties)->textDirection(highestAncestorDirection)
579 WritingDirection textDirection = NaturalWritingDirection;
580 bool hasTextDirection = style->textDirection(textDirection);
585 HTMLElement* startUnsplitAncestor = splitAncestorsWithUnicodeBidi(start.deprecatedNode(), true, textDirection);
586 HTMLElement* endUnsplitAncestor = splitAncestorsWithUnicodeBidi(end.deprecatedNode(), false, textDirection);
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLElement.cpp 837 TextDirection HTMLElement::directionalityIfhasDirAutoAttribute(bool& isAuto) const
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp     [all...]
  /frameworks/base/core/java/android/view/
View.java     [all...]

Completed in 329 milliseconds