Searched defs:unicodeBidi (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DInlineIterator.h105 static inline WTF::Unicode::Direction embedCharFromDirection(TextDirection dir, EUnicodeBidi unicodeBidi) argument
108 if (unicodeBidi == Embed)
119 EUnicodeBidi unicodeBidi = style->unicodeBidi(); local
120 if (unicodeBidi == UBNormal)
122 resolver->embed(embedCharFromDirection(style->direction(), unicodeBidi), FromStyleOrDOM);
129 if (object->style()->unicodeBidi() == UBNormal)
/external/webkit/Source/WebCore/editing/
H A DEditingStyle.cpp388 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; local
703 unicodeBidi = m_mutableStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi);
717 if (unicodeBidi && unicodeBidi->isPrimitiveValue()) {
718 m_mutableStyle->setProperty(CSSPropertyUnicodeBidi, static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent());
H A DApplyStyleCommand.cpp442 int unicodeBidi = getIdentifierValue(computedStyle(n).get(), CSSPropertyUnicodeBidi); local
443 if (unicodeBidi && unicodeBidi != CSSValueNormal) {
444 highestAncestorUnicodeBidi = unicodeBidi;
494 int unicodeBidi = getIdentifierValue(computedStyle(element).get(), CSSPropertyUnicodeBidi); local
495 if (!unicodeBidi || unicodeBidi == CSSValueNormal)
H A DEditor.cpp588 RefPtr<CSSValue> unicodeBidi = style->getPropertyCSSValue(CSSPropertyUnicodeBidi); local
589 if (!unicodeBidi || !unicodeBidi->isPrimitiveValue())
592 int unicodeBidiValue = static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent();
618 RefPtr<CSSValue> unicodeBidi = style->getPropertyCSSValue(CSSPropertyUnicodeBidi); local
619 if (!unicodeBidi || !unicodeBidi->isPrimitiveValue())
622 int unicodeBidiValue = static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent();
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.h472 EUnicodeBidi unicodeBidi() const { return static_cast<EUnicodeBidi>(noninherited_flags._unicodeBidi); } function in class:WebCore::RenderStyle

Completed in 127 milliseconds