Searched refs:unicodeBidi (Results 1 – 14 of 14) sorted by relevance
/external/webkit/WebCore/editing/ |
D | InsertTextCommand.cpp | 182 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()
|
D | ApplyStyleCommand.cpp | 638 … 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 …]
|
D | Editor.cpp | 472 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/ |
D | DOMCSS.h | 278 - (NSString *)unicodeBidi; 279 - (void)setUnicodeBidi:(NSString *)unicodeBidi;
|
D | DOMCSS.mm | 1352 - (NSString *)unicodeBidi 1357 - (void)setUnicodeBidi:(NSString *)unicodeBidi 1359 [self setProperty:@"unicode-bidi" value:unicodeBidi priority:@""];
|
/external/webkit/WebCore/page/ |
D | Frame.cpp | 910 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/ |
D | bidi.cpp | 185 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()
|
D | RenderFileUploadControl.cpp | 193 …tRun(string, length, false, 0, 0, style()->direction() == RTL, style()->unicodeBidi() == Override); in paintObject()
|
D | RenderListBox.cpp | 336 …TextRun textRun(string, length, 0, 0, 0, itemStyle->direction() == RTL, itemStyle->unicodeBidi() =… in paintItemForeground()
|
/external/webkit/WebCore/html/ |
D | CanvasRenderingContext2D.cpp | 1366 …bool override = m_canvas->computedStyle() ? m_canvas->computedStyle()->unicodeBidi() == Override :… in drawTextInternal()
|
/external/webkit/WebCore/css/ |
D | CSSComputedStyleDeclaration.cpp | 990 return CSSPrimitiveValue::create(style->unicodeBidi()); in getPropertyCSSValue()
|
D | CSSStyleSelector.cpp | 3118 HANDLE_INHERIT_AND_INITIAL(unicodeBidi, UnicodeBidi) in applyProperty()
|
/external/webkit/WebCore/rendering/style/ |
D | RenderStyle.h | 426 …EUnicodeBidi unicodeBidi() const { return static_cast<EUnicodeBidi>(noninherited_flags._unicodeBid… in unicodeBidi() function
|
/external/webkit/WebCore/ |
D | ChangeLog-2006-05-10 | 15998 (khtml::RenderStyle::unicodeBidi):
|