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

  /external/webkit/Source/WebCore/rendering/
InlineIterator.h 105 static inline WTF::Unicode::Direction embedCharFromDirection(TextDirection dir, EUnicodeBidi unicodeBidi)
108 if (unicodeBidi == Embed)
119 EUnicodeBidi unicodeBidi = style->unicodeBidi();
120 if (unicodeBidi == UBNormal)
122 resolver->embed(embedCharFromDirection(style->direction(), unicodeBidi), FromStyleOrDOM);
129 if (object->style()->unicodeBidi() == UBNormal)
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 388 RefPtr<CSSValue> unicodeBidi = m_mutableStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi);
389 if (!unicodeBidi || !unicodeBidi->isPrimitiveValue())
392 int unicodeBidiValue = static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent();
700 RefPtr<CSSValue> unicodeBidi;
703 unicodeBidi = m_mutableStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi);
717 if (unicodeBidi && unicodeBidi->isPrimitiveValue()) {
718 m_mutableStyle->setProperty(CSSPropertyUnicodeBidi, static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent());
    [all...]
ApplyStyleCommand.cpp 442 int unicodeBidi = getIdentifierValue(computedStyle(n).get(), CSSPropertyUnicodeBidi);
443 if (unicodeBidi && unicodeBidi != CSSValueNormal) {
444 highestAncestorUnicodeBidi = unicodeBidi;
494 int unicodeBidi = getIdentifierValue(computedStyle(element).get(), CSSPropertyUnicodeBidi);
495 if (!unicodeBidi || unicodeBidi == CSSValueNormal)
    [all...]
Editor.cpp 588 RefPtr<CSSValue> unicodeBidi = style->getPropertyCSSValue(CSSPropertyUnicodeBidi);
589 if (!unicodeBidi || !unicodeBidi->isPrimitiveValue())
592 int unicodeBidiValue = static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent();
618 RefPtr<CSSValue> unicodeBidi = style->getPropertyCSSValue(CSSPropertyUnicodeBidi);
619 if (!unicodeBidi || !unicodeBidi->isPrimitiveValue())
622 int unicodeBidiValue = static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent();
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 65 #include "UnicodeBidi.h"
472 EUnicodeBidi unicodeBidi() const { return static_cast<EUnicodeBidi>(noninherited_flags._unicodeBidi); }
    [all...]

Completed in 95 milliseconds