Searched refs:unicodeBidi (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DUnicodeBidi.h40 inline bool isIsolated(const EUnicodeBidi& unicodeBidi) argument
42 return unicodeBidi == Isolate || unicodeBidi == IsolateOverride || unicodeBidi == Plaintext;
45 inline bool isOverride(EUnicodeBidi unicodeBidi) argument
47 return unicodeBidi == Override || unicodeBidi == IsolateOverride;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DBidiRunForLine.cpp41 if (isIsolated(current->style()->unicodeBidi())
62 && !isIsolated(current->style()->unicodeBidi()))
90 isOverride(root->style()->unicodeBidi())));
168 EUnicodeBidi unicodeBidi = isolatedInline->style()->unicodeBidi(); local
170 if (unicodeBidi == Plaintext) {
174 ASSERT(unicodeBidi == Isolate || unicodeBidi == IsolateOverride);
178 isOverride(unicodeBidi)));
H A DInlineIterator.h122 static inline WTF::Unicode::Direction embedCharFromDirection(TextDirection dir, EUnicodeBidi unicodeBidi) argument
125 if (unicodeBidi == Embed)
137 EUnicodeBidi unicodeBidi = style->unicodeBidi(); local
138 if (unicodeBidi == UBNormal) {
144 if (isIsolated(unicodeBidi)) {
154 observer->embed(embedCharFromDirection(style->direction(), unicodeBidi), FromStyleOrDOM);
163 EUnicodeBidi unicodeBidi = object->style()->unicodeBidi();
164 if (unicodeBidi
[all...]
H A DRenderMenuList.cpp130 if ((m_optionStyle->direction() != innerStyle->direction() || m_optionStyle->unicodeBidi() != innerStyle->unicodeBidi()))
134 innerStyle->setUnicodeBidi(m_optionStyle->unicodeBidi());
522 style->textIndent(), style->direction(), isOverride(style->unicodeBidi()),
562 s->display() == NONE, s->textIndent(), style()->direction(), isOverride(style()->unicodeBidi()));
H A DRenderTextControl.cpp93 textBlockStyle->setUnicodeBidi(style()->unicodeBidi());
H A DTextRunConstructor.cpp65 directionalOverride |= isOverride(style->unicodeBidi());
H A DRenderLineBoxList.cpp314 if (adjacentBox && (potentialLineBreakObjects.contains(box->lineBreakObj()) || potentialLineBreakObjects.contains(adjacentBox->lineBreakObj()) || child->isBR() || isIsolated(container->style()->unicodeBidi())))
H A DRenderBlockLineLayout.cpp488 if (rootInlineBox && rootInlineBox->renderer().style()->unicodeBidi() == Plaintext)
836 if (isNewUBAParagraph && styleToUse->unicodeBidi() == Plaintext && !resolver.context()->parent()) {
838 resolver.setStatus(BidiStatus(direction, isOverride(styleToUse->unicodeBidi())));
1751 if (style()->unicodeBidi() == Plaintext)
1753 resolver.setStatus(BidiStatus(direction, isOverride(style()->unicodeBidi())));
H A DRenderText.cpp933 if (isOverride(styleToUse->unicodeBidi())) {
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditingStyle.cpp547 RefPtrWillBeRawPtr<CSSValue> unicodeBidi = m_mutableStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi);
548 if (!unicodeBidi || !unicodeBidi->isPrimitiveValue())
551 CSSValueID unicodeBidiValue = toCSSPrimitiveValue(unicodeBidi.get())->getValueID();
957 RefPtrWillBeRawPtr<CSSValue> unicodeBidi = nullptr; local
960 unicodeBidi = m_mutableStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi);
976 if (unicodeBidi && unicodeBidi->isPrimitiveValue()) {
977 m_mutableStyle->setProperty(CSSPropertyUnicodeBidi, toCSSPrimitiveValue(unicodeBidi.get())->getValueID());
1334 RefPtrWillBeRawPtr<CSSValue> unicodeBidi local
1364 RefPtrWillBeRawPtr<CSSValue> unicodeBidi = style->getPropertyCSSValue(CSSPropertyUnicodeBidi); local
[all...]
H A DApplyStyleCommand.cpp471 int unicodeBidi = getIdentifierValue(CSSComputedStyleDeclaration::create(n).get(), CSSPropertyUnicodeBidi); local
472 if (unicodeBidi && unicodeBidi != CSSValueNormal) {
473 highestAncestorUnicodeBidi = unicodeBidi;
521 int unicodeBidi = getIdentifierValue(CSSComputedStyleDeclaration::create(element).get(), CSSPropertyUnicodeBidi); local
522 if (!unicodeBidi || unicodeBidi == CSSValueNormal)
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextMetrics.cpp80 , isOverride(style->unicodeBidi()) /* directionalOverride */);
H A DSVGTextMetricsBuilder.cpp102 if (isOverride(style->unicodeBidi()))
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp232 noninherited_flags.unicodeBidi = other->noninherited_flags.unicodeBidi;
540 || noninherited_flags.unicodeBidi != other.noninherited_flags.unicodeBidi
H A DRenderStyle.h227 && unicodeBidi == other.unicodeBidi
247 unsigned unicodeBidi : 3; // EUnicodeBidi member in struct:blink::RenderStyle::NonInheritedFlags
310 noninherited_flags.unicodeBidi = initialUnicodeBidi();
545 EUnicodeBidi unicodeBidi() const { return static_cast<EUnicodeBidi>(noninherited_flags.unicodeBidi); } function in class:blink::RenderStyle
1108 void setUnicodeBidi(EUnicodeBidi b) { noninherited_flags.unicodeBidi = b; }
1744 void inheritUnicodeBidiFrom(const RenderStyle* parent) { noninherited_flags.unicodeBidi = parent->noninherited_flags.unicodeBidi; }
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssSchema.java628 Property unicodeBidi = new Property(
630 builder.put("unicode-bidi", unicodeBidi);
/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream ...
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp2173 bool override = computedStyle ? isOverride(computedStyle->unicodeBidi()) : false;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp2249 return cssValuePool().createValue(style->unicodeBidi());

Completed in 1825 milliseconds