HomeSort by relevance Sort by last modified time
    Searched refs:unicodeBidi (Results 1 - 19 of 19) 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)
RenderMenuList.cpp 101 if ((m_optionStyle->direction() != innerStyle->direction() || m_optionStyle->unicodeBidi() != innerStyle->unicodeBidi()))
105 innerStyle->setUnicodeBidi(m_optionStyle->unicodeBidi());
431 return style ? PopupMenuStyle(style->visitedDependentColor(CSSPropertyColor), itemBackgroundColor(listIndex), style->font(), style->visibility() == VISIBLE, style->display() == NONE, style->textIndent(), style->direction(), style->unicodeBidi() == Override) : menuStyle();
461 return PopupMenuStyle(s->visitedDependentColor(CSSPropertyColor), s->visitedDependentColor(CSSPropertyBackgroundColor), s->font(), s->visibility() == VISIBLE, s->display() == NONE, s->textIndent(), style()->direction(), style()->unicodeBidi() == Override);
RenderFileUploadControl.cpp 225 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, !style()->isLeftToRightDirection(), style()->unicodeBidi() == Override);
RenderTextControl.cpp 650 TextRun textRun(placeholderText.characters(), placeholderText.length(), false, 0, 0, TextRun::AllowTrailingExpansion, !placeholderStyle->isLeftToRightDirection(), placeholderStyle->unicodeBidi() == Override);
RenderListBox.cpp 392 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, !itemStyle->isLeftToRightDirection(), itemStyle->unicodeBidi() == Override);
RenderTextControlSingleLine.cpp     [all...]
RenderBlockLineLayout.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextMetrics.cpp 87 , style->unicodeBidi() == Override /* directionalOverride */);
SVGTextLayoutAttributesBuilder.cpp 239 fprintf(stderr, "BiDi properties: unicode-bidi=%i, block direction=%i\n", text->style()->unicodeBidi(), text->style()->direction());
  /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/bindings/objc/
DOMCSS.h 278 - (NSString *)unicodeBidi;
279 - (void)setUnicodeBidi:(NSString *)unicodeBidi;
DOMCSS.mm 1257 - (NSString *)unicodeBidi
1262 - (void)setUnicodeBidi:(NSString *)unicodeBidi
1264 [self setProperty:@"unicode-bidi" value:unicodeBidi priority:@""];
  /external/webkit/Source/WebKit/chromium/src/
AutoFillPopupMenuClient.cpp 296 textField->renderer()->style()->direction(), textField->renderer()->style()->unicodeBidi() == Override));
  /external/webkit/Source/WebCore/css/
CSSComputedStyleDeclaration.cpp     [all...]
CSSStyleSelector.cpp     [all...]
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp     [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 609 milliseconds