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

  /external/chromium_org/third_party/WebKit/Source/platform/text/
UnicodeBidi.h 40 inline bool isIsolated(const EUnicodeBidi& unicodeBidi)
42 return unicodeBidi == Isolate || unicodeBidi == IsolateOverride || unicodeBidi == Plaintext;
45 inline bool isOverride(EUnicodeBidi unicodeBidi)
47 return unicodeBidi == Override || unicodeBidi == IsolateOverride;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
BidiRunForLine.cpp 41 if (isIsolated(current->style()->unicodeBidi())
62 && !isIsolated(current->style()->unicodeBidi()))
90 isOverride(root->style()->unicodeBidi())));
168 EUnicodeBidi unicodeBidi = isolatedInline->style()->unicodeBidi();
170 if (unicodeBidi == Plaintext) {
174 ASSERT(unicodeBidi == Isolate || unicodeBidi == IsolateOverride);
178 isOverride(unicodeBidi)));
InlineIterator.h 122 static inline WTF::Unicode::Direction embedCharFromDirection(TextDirection dir, EUnicodeBidi unicodeBidi)
125 if (unicodeBidi == Embed)
137 EUnicodeBidi unicodeBidi = style->unicodeBidi();
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 == UBNormal
    [all...]
RenderMenuList.cpp 130 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()));
RenderTextControl.cpp 93 textBlockStyle->setUnicodeBidi(style()->unicodeBidi());
TextRunConstructor.cpp 65 directionalOverride |= isOverride(style->unicodeBidi());
RenderLineBoxList.cpp 314 if (adjacentBox && (potentialLineBreakObjects.contains(box->lineBreakObj()) || potentialLineBreakObjects.contains(adjacentBox->lineBreakObj()) || child->isBR() || isIsolated(container->style()->unicodeBidi())))
RenderBlockLineLayout.cpp 488 if (rootInlineBox && rootInlineBox->renderer().style()->unicodeBidi() == Plaintext)
    [all...]
RenderText.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 547 RefPtrWillBeRawPtr<CSSValue> unicodeBidi = m_mutableStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi);
548 if (!unicodeBidi || !unicodeBidi->isPrimitiveValue())
551 CSSValueID unicodeBidiValue = toCSSPrimitiveValue(unicodeBidi.get())->getValueID();
    [all...]
ApplyStyleCommand.cpp 471 int unicodeBidi = getIdentifierValue(CSSComputedStyleDeclaration::create(n).get(), CSSPropertyUnicodeBidi);
472 if (unicodeBidi && unicodeBidi != CSSValueNormal) {
473 highestAncestorUnicodeBidi = unicodeBidi;
521 int unicodeBidi = getIdentifierValue(CSSComputedStyleDeclaration::create(element).get(), CSSPropertyUnicodeBidi);
522 if (!unicodeBidi || unicodeBidi == CSSValueNormal)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextMetrics.cpp 80 , isOverride(style->unicodeBidi()) /* directionalOverride */);
SVGTextMetricsBuilder.cpp 102 if (isOverride(style->unicodeBidi()))
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp 232 noninherited_flags.unicodeBidi = other->noninherited_flags.unicodeBidi;
540 || noninherited_flags.unicodeBidi != other.noninherited_flags.unicodeBidi
    [all...]
RenderStyle.h 73 #include "platform/text/UnicodeBidi.h"
227 && unicodeBidi == other.unicodeBidi
247 unsigned unicodeBidi : 3; // EUnicodeBidi
310 noninherited_flags.unicodeBidi = initialUnicodeBidi();
545 EUnicodeBidi unicodeBidi() const { return static_cast<EUnicodeBidi>(noninherited_flags.unicodeBidi); }
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java 628 Property unicodeBidi = new Property(
630 builder.put("unicode-bidi", unicodeBidi);
    [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]

Completed in 249 milliseconds