RTL 2890 Source/core/css/CSSPrimitiveValueMappings.h case RTL: RTL 2903 Source/core/css/CSSPrimitiveValueMappings.h return RTL; RTL 1016 Source/core/editing/FrameSelection.cpp if (direction == DirectionForward || (textDirection == LTR && direction == DirectionRight) || (textDirection == RTL && direction == DirectionLeft)) RTL 401 Source/core/editing/VisibleUnits.cpp bool movingBackward = (direction == MoveLeft && box->direction() == LTR) || (direction == MoveRight && box->direction() == RTL); RTL 1843 Source/core/html/HTMLInputElement.cpp parameters.isAnchorElementRTL = computedStyle()->direction() == RTL; RTL 644 Source/core/html/HTMLTextFormControlElement.cpp return textDirection == RTL ? "rtl" : "ltr"; RTL 2221 Source/core/html/canvas/CanvasRenderingContext2D.cpp bool isRTL = direction == RTL; RTL 317 Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp TextDirection contentDirection = element().locale().isRTL() ? RTL : LTR; RTL 115 Source/core/rendering/AbstractInlineTextBox.cpp return (m_inlineTextBox->direction() == RTL ? RightToLeft : LeftToRight); RTL 116 Source/core/rendering/AbstractInlineTextBox.cpp return (m_inlineTextBox->direction() == RTL ? BottomToTop : TopToBottom); RTL 250 Source/core/rendering/InlineBox.h TextDirection direction() const { return bidiLevel() % 2 ? RTL : LTR; } RTL 125 Source/core/rendering/InlineIterator.h return dir == RTL ? RightToLeftEmbedding : LeftToRightEmbedding; RTL 126 Source/core/rendering/InlineIterator.h return dir == RTL ? RightToLeftOverride : LeftToRightOverride; RTL 307 Source/core/rendering/InlineTextBox.cpp float widthOfVisibleText = toRenderText(renderer()).width(m_start, offset, textPos(), flowIsLTR ? LTR : RTL, isFirstLineStyle()); RTL 506 Source/core/rendering/InlineTextBox.cpp LayoutUnit widthOfVisibleText = toRenderText(renderer()).width(m_start, m_truncation, textPos(), isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle()); RTL 1107 Source/core/rendering/InlineTextBox.cpp width = toRenderText(renderer()).width(m_start, m_truncation, textPos(), isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle()); RTL 1368 Source/core/rendering/InlineTextBox.cpp start = toRenderText(renderer()).width(m_start, paintStart - m_start, textPos(), isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle()); RTL 1379 Source/core/rendering/InlineTextBox.cpp width = toRenderText(renderer()).width(paintStart, paintEnd - paintStart, textPos() + start, isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle()); RTL 3307 Source/core/rendering/RenderBox.cpp if (containerDirection == RTL) RTL 3806 Source/core/rendering/RenderBox.cpp if (containerDirection == RTL) { RTL 358 Source/core/rendering/RenderImage.cpp if (textRun.direction() == RTL) { RTL 372 Source/core/rendering/RenderThemeChromiumDefault.cpp extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 4 + spacingRight: right - 13 - spacingRight; RTL 375 Source/core/rendering/RenderThemeChromiumDefault.cpp extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13; RTL 406 Source/core/rendering/RenderThemeChromiumDefault.cpp extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 4 + spacingRight: right - 13 - spacingRight; RTL 409 Source/core/rendering/RenderThemeChromiumDefault.cpp extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13; RTL 519 Source/core/rendering/line/BreakingContextInlineHeaders.h || direction == WTF::Unicode::RightToLeftArabic ? RTL : LTR; RTL 139 Source/modules/notifications/Notification.cpp return dir() == "rtl" ? RTL : LTR; RTL 191 Source/platform/DragImage.cpp if (hasStrongDirectionality && textRun.direction() == RTL) { RTL 62 Source/platform/fonts/WidthIterator.cpp unsigned expansionOpportunityCount = m_run.is8Bit() ? Character::expansionOpportunityCount(m_run.characters8(), m_run.length(), m_run.ltr() ? LTR : RTL, isAfterExpansion) : Character::expansionOpportunityCount(m_run.characters16(), m_run.length(), m_run.ltr() ? LTR : RTL, isAfterExpansion); RTL 103 Source/platform/fonts/harfbuzz/HarfBuzzShaper.h bool rtl() { return m_direction == RTL; } RTL 86 Source/platform/fonts/mac/ComplexTextController.cpp expansionOpportunityCount = Character::expansionOpportunityCount(m_run.characters8(), m_end, m_run.ltr() ? LTR : RTL, isAfterExpansion); RTL 88 Source/platform/fonts/mac/ComplexTextController.cpp expansionOpportunityCount = Character::expansionOpportunityCount(m_run.characters16(), m_end, m_run.ltr() ? LTR : RTL, isAfterExpansion); RTL 997 Source/platform/graphics/GraphicsContext.cpp subrun.setDirection(isRTL ? RTL : LTR); RTL 64 Source/platform/text/BidiCharacterRun.h TextDirection direction() const { return reversed(false) ? RTL : LTR; } RTL 233 Source/platform/text/BidiResolver.h m_paragraphDirectionality = s.context->dir() == WTF::Unicode::LeftToRight ? LTR : RTL; RTL 654 Source/platform/text/BidiResolver.h return RTL; RTL 87 Source/platform/text/BidiResolverTest.cpp { { 0xD802, 0xDC58 }, 2, RTL, true }, RTL 96 Source/platform/text/BidiResolverTest.cpp { { 0xDC58, 0x05D0 }, 2, RTL, true }, RTL 99 Source/platform/text/BidiResolverTest.cpp { { 0xD802, 0xD802, 0xDC58 }, 3, RTL, true }, RTL 187 Source/platform/text/BidiResolverTest.cpp textRun.setDirection(RTL); RTL 204 Source/platform/text/TextRun.h bool rtl() const { return m_direction == RTL; } RTL 581 Source/web/ChromeClientImpl.cpp WebTextDirection textDirection = (dir == RTL) ? RTL 203 Source/web/ExternalPopupMenu.cpp if (style.textDirection() == WebCore::RTL) RTL 213 Source/web/ExternalPopupMenu.cpp info->rightAligned = m_popupMenuClient->menuStyle().textDirection() == WebCore::RTL; RTL 432 Source/web/PopupContainer.cpp return m_listBox->m_popupClient->menuStyle().textDirection() == RTL; RTL 496 Source/web/PopupContainer.cpp if (inputItem.textDirection == WebCore::RTL) RTL 519 Source/web/PopupContainer.cpp info->rightAligned = menuStyle().textDirection() == RTL; RTL 282 Source/web/PopupListBox.cpp return m_popupClient->menuStyle().textDirection() == RTL; RTL 441 Source/web/PopupListBox.cpp bool rightAligned = m_popupClient->menuStyle().textDirection() == RTL; RTL 727 Source/web/PopupListBox.cpp bool isRightAligned = m_popupClient->menuStyle().textDirection() == RTL; RTL 85 Source/web/ValidationMessageClientImpl.cpp WebTextDirection dir = m_currentAnchor->renderer()->style()->direction() == RTL ? WebTextDirectionRightToLeft : WebTextDirectionLeftToRight; RTL 70 Source/web/WebNotification.cpp return (m_private->direction() == WebCore::RTL) ? RTL 116 Source/web/WebPopupMenuImpl.cpp client()->setToolTipText(container->getSelectedItemToolTip(), container->menuStyle().textDirection() == WebCore::RTL ? WebTextDirectionRightToLeft : WebTextDirectionLeftToRight); RTL 42 Source/web/WebTextRun.cpp return TextRun(text, 0, 0, TextRun::AllowTrailingExpansion, rtl ? RTL : LTR, directionalOverride); RTL 2245 Source/web/WebViewImpl.cpp start = selection.start().primaryDirection() == RTL ? WebTextDirectionRightToLeft : WebTextDirectionLeftToRight; RTL 2246 Source/web/WebViewImpl.cpp end = selection.end().primaryDirection() == RTL ? WebTextDirectionRightToLeft : WebTextDirectionLeftToRight;