Searched refs:unicodeBidi (Results 1 - 19 of 19) 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)
H A DRenderMenuList.cpp101 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);
H A DRenderFileUploadControl.cpp232 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, !style()->isLeftToRightDirection(), style()->unicodeBidi() == Override);
H A DRenderTextControl.cpp650 TextRun textRun(placeholderText.characters(), placeholderText.length(), false, 0, 0, TextRun::AllowTrailingExpansion, !placeholderStyle->isLeftToRightDirection(), placeholderStyle->unicodeBidi() == Override);
H A DRenderListBox.cpp392 TextRun textRun(string, length, false, 0, 0, TextRun::AllowTrailingExpansion, !itemStyle->isLeftToRightDirection(), itemStyle->unicodeBidi() == Override);
H A DRenderTextControlSingleLine.cpp945 return PopupMenuStyle(style()->visitedDependentColor(CSSPropertyColor), style()->visitedDependentColor(CSSPropertyBackgroundColor), style()->font(), style()->visibility() == VISIBLE, style()->display() == NONE, style()->textIndent(), style()->direction(), style()->unicodeBidi() == Override);
H A DRenderBlockLineLayout.cpp1399 resolver.setContext(BidiContext::create(ltr ? 0 : 1, direction, style()->unicodeBidi() == Override, FromStyleOrDOM));
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextMetrics.cpp87 , style->unicodeBidi() == Override /* directionalOverride */);
H A DSVGTextLayoutAttributesBuilder.cpp239 fprintf(stderr, "BiDi properties: unicode-bidi=%i, block direction=%i\n", text->style()->unicodeBidi(), text->style()->direction());
/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/bindings/objc/
H A DDOMCSS.h278 - (NSString *)unicodeBidi;
279 - (void)setUnicodeBidi:(NSString *)unicodeBidi;
H A DDOMCSS.mm1257 - (NSString *)unicodeBidi
1262 - (void)setUnicodeBidi:(NSString *)unicodeBidi
1264 [self setProperty:@"unicode-bidi" value:unicodeBidi priority:@""];
/external/webkit/Source/WebKit/chromium/src/
H A DAutoFillPopupMenuClient.cpp296 textField->renderer()->style()->direction(), textField->renderer()->style()->unicodeBidi() == Override));
/external/webkit/Source/WebCore/css/
H A DCSSComputedStyleDeclaration.cpp1378 return primitiveValueCache->createValue(style->unicodeBidi());
H A DCSSStyleSelector.cpp3797 HANDLE_INHERIT_AND_INITIAL_AND_PRIMITIVE(unicodeBidi, UnicodeBidi)
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp1852 bool override = computedStyle ? computedStyle->unicodeBidi() == Override : false;
/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 300 milliseconds