Home
last modified time | relevance | path

Searched refs:unicodeBidi (Results 1 – 14 of 14) sorted by relevance

/external/webkit/WebCore/editing/
DInsertTextCommand.cpp182 RefPtr<CSSValue> unicodeBidi; in input() local
185 unicodeBidi = typingStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi); in input()
189 if (typingStyle && unicodeBidi) { in input()
190 ASSERT(unicodeBidi->isPrimitiveValue()); in input()
191 …e->setProperty(CSSPropertyUnicodeBidi, static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIden… in input()
DApplyStyleCommand.cpp638 … RefPtr<CSSValue> unicodeBidi = computedStyle(n)->getPropertyCSSValue(CSSPropertyUnicodeBidi); in splitAncestorsWithUnicodeBidi() local
639 if (unicodeBidi) { in splitAncestorsWithUnicodeBidi()
640 ASSERT(unicodeBidi->isPrimitiveValue()); in splitAncestorsWithUnicodeBidi()
641 if (static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent() != CSSValueNormal) { in splitAncestorsWithUnicodeBidi()
642 highestAncestorUnicodeBidi = static_cast<CSSPrimitiveValue*>(unicodeBidi.get()); in splitAncestorsWithUnicodeBidi()
694 …RefPtr<CSSValue> unicodeBidi = computedStyle(element)->getPropertyCSSValue(CSSPropertyUnicodeBidi); in removeEmbeddingUpToEnclosingBlock() local
695 if (unicodeBidi) { in removeEmbeddingUpToEnclosingBlock()
696 ASSERT(unicodeBidi->isPrimitiveValue()); in removeEmbeddingUpToEnclosingBlock()
697 if (static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent() != CSSValueNormal) { in removeEmbeddingUpToEnclosingBlock()
756 RefPtr<CSSValue> unicodeBidi = style->getPropertyCSSValue(CSSPropertyUnicodeBidi); in applyInlineStyle() local
[all …]
DEditor.cpp472 RefPtr<CSSValue> unicodeBidi = style->getPropertyCSSValue(CSSPropertyUnicodeBidi); in textDirectionForSelection() local
473 if (!unicodeBidi) in textDirectionForSelection()
476 ASSERT(unicodeBidi->isPrimitiveValue()); in textDirectionForSelection()
477 int unicodeBidiValue = static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent(); in textDirectionForSelection()
485 RefPtr<CSSValue> unicodeBidi = typingStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi); in textDirectionForSelection() local
486 if (unicodeBidi) { in textDirectionForSelection()
487 ASSERT(unicodeBidi->isPrimitiveValue()); in textDirectionForSelection()
488 … int unicodeBidiValue = static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent(); in textDirectionForSelection()
515 RefPtr<CSSValue> unicodeBidi = style->getPropertyCSSValue(CSSPropertyUnicodeBidi); in textDirectionForSelection() local
516 if (!unicodeBidi) in textDirectionForSelection()
[all …]
/external/webkit/WebCore/bindings/objc/
DDOMCSS.h278 - (NSString *)unicodeBidi;
279 - (void)setUnicodeBidi:(NSString *)unicodeBidi;
DDOMCSS.mm1352 - (NSString *)unicodeBidi
1357 - (void)setUnicodeBidi:(NSString *)unicodeBidi
1359 [self setProperty:@"unicode-bidi" value:unicodeBidi priority:@""];
/external/webkit/WebCore/page/
DFrame.cpp910 RefPtr<CSSValue> unicodeBidi; in computeAndSetTypingStyle() local
913 unicodeBidi = mutableStyle->getPropertyCSSValue(CSSPropertyUnicodeBidi); in computeAndSetTypingStyle()
920 if (editingAction == EditActionSetWritingDirection && unicodeBidi) { in computeAndSetTypingStyle()
921 ASSERT(unicodeBidi->isPrimitiveValue()); in computeAndSetTypingStyle()
922 …e->setProperty(CSSPropertyUnicodeBidi, static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIden… in computeAndSetTypingStyle()
/external/webkit/WebCore/rendering/
Dbidi.cpp185 EUnicodeBidi ub = next->style()->unicodeBidi(); in bidiNext()
204 … if (resolver && current->isRenderInline() && current->style()->unicodeBidi() != UBNormal) in bidiNext()
210 EUnicodeBidi ub = next->style()->unicodeBidi(); in bidiNext()
255 EUnicodeBidi ub = o->style()->unicodeBidi(); in bidiFirst()
1317 || (style()->unicodeBidi() == UBNormal && isSVGText()) in determineStartPosition()
1321 … new BidiContext(ltr ? 0 : 1, ltr ? LeftToRight : RightToLeft, style()->unicodeBidi() == Override); in determineStartPosition()
DRenderFileUploadControl.cpp193 …tRun(string, length, false, 0, 0, style()->direction() == RTL, style()->unicodeBidi() == Override); in paintObject()
DRenderListBox.cpp336 …TextRun textRun(string, length, 0, 0, 0, itemStyle->direction() == RTL, itemStyle->unicodeBidi() =… in paintItemForeground()
/external/webkit/WebCore/html/
DCanvasRenderingContext2D.cpp1366 …bool override = m_canvas->computedStyle() ? m_canvas->computedStyle()->unicodeBidi() == Override :… in drawTextInternal()
/external/webkit/WebCore/css/
DCSSComputedStyleDeclaration.cpp990 return CSSPrimitiveValue::create(style->unicodeBidi()); in getPropertyCSSValue()
DCSSStyleSelector.cpp3118 HANDLE_INHERIT_AND_INITIAL(unicodeBidi, UnicodeBidi) in applyProperty()
/external/webkit/WebCore/rendering/style/
DRenderStyle.h426 …EUnicodeBidi unicodeBidi() const { return static_cast<EUnicodeBidi>(noninherited_flags._unicodeBid… in unicodeBidi() function
/external/webkit/WebCore/
DChangeLog-2006-05-1015998 (khtml::RenderStyle::unicodeBidi):