Searched refs:RTL (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextDirection.h31 enum TextDirection { RTL, LTR }; enumerator in enum:WebCore::TextDirection
H A DBidiCharacterRun.h64 TextDirection direction() const { return reversed(false) ? RTL : LTR; }
H A DBidiResolverTest.cpp86 // Test strong RTL, non-BMP. (U+10858 Imperial Aramaic number one, strong RTL)
87 { { 0xD802, 0xDC58 }, 2, RTL, true },
96 { { 0xDC58, 0x05D0 }, 2, RTL, true },
99 { { 0xD802, 0xD802, 0xDC58 }, 3, RTL, true },
187 textRun.setDirection(RTL);
H A DTextRun.h204 bool rtl() const { return m_direction == RTL; }
H A DBidiResolver.h232 m_paragraphDirectionality = s.context->dir() == WTF::Unicode::LeftToRight ? LTR : RTL;
653 return RTL;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebTextRun.cpp42 return TextRun(text, 0, 0, TextRun::AllowTrailingExpansion, rtl ? RTL : LTR, directionalOverride);
H A DWebNotification.cpp70 return (m_private->direction() == WebCore::RTL) ?
H A DExternalPopupMenu.cpp200 if (style.textDirection() == WebCore::RTL)
210 info->rightAligned = m_popupMenuClient->menuStyle().textDirection() == WebCore::RTL;
H A DValidationMessageClientImpl.cpp83 WebTextDirection dir = m_currentAnchor->renderer()->style()->direction() == RTL ? WebTextDirectionRightToLeft : WebTextDirectionLeftToRight;
H A DPopupContainer.cpp173 // Compute the starting x-axis for a normal RTL or right-aligned LTR
194 // Use popupInitialCoordinate.x() + rightOffset because RTL position
432 return m_listBox->m_popupClient->menuStyle().textDirection() == RTL;
496 if (inputItem.textDirection == WebCore::RTL)
519 info->rightAligned = menuStyle().textDirection() == RTL;
H A DPopupListBox.cpp282 return m_popupClient->menuStyle().textDirection() == RTL;
441 bool rightAligned = m_popupClient->menuStyle().textDirection() == RTL;
727 bool isRightAligned = m_popupClient->menuStyle().textDirection() == RTL;
H A DWebPopupMenuImpl.cpp124 client()->setToolTipText(container->getSelectedItemToolTip(), container->menuStyle().textDirection() == WebCore::RTL ? WebTextDirectionRightToLeft : WebTextDirectionLeftToRight);
/external/icu/icu4c/source/common/
H A Duscript_props.cpp39 const int32_t RTL = 1 << 24; member in namespace:__anon21052
48 0x0628 | RECOMMENDED | RTL, // Arab
65 0x05D0 | RECOMMENDED | RTL, // Hebr
80 0x0710 | LIMITED_USE | RTL, // Syrc
83 0x078C | RECOMMENDED | RTL, // Thaa
93 0x10800 | EXCLUSION | RTL, // Cprt
103 0x10A00 | EXCLUSION | RTL, // Khar
130 0x0840 | LIMITED_USE | RTL, // Mand
132 0x10980 | EXCLUSION | RTL, // Mero
133 0x07CA | LIMITED_USE | RTL, // Nko
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DAbstractInlineTextBox.cpp115 return (m_inlineTextBox->direction() == RTL ? RightToLeft : LeftToRight);
116 return (m_inlineTextBox->direction() == RTL ? BottomToTop : TopToBottom);
H A DRenderThemeChromiumDefault.cpp380 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 4 + spacingRight: right - 13 - spacingRight;
383 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13;
414 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 4 + spacingRight: right - 13 - spacingRight;
417 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13;
H A DInlineIterator.h126 return dir == RTL ? RightToLeftEmbedding : LeftToRightEmbedding;
127 return dir == RTL ? RightToLeftOverride : LeftToRightOverride;
H A DInlineTextBox.cpp266 // For LTR this is the left edge of the box, for RTL, the right edge in parent coordinates.
271 // RTL: the right edge of the ellipsis is to the right of our text run.
310 float widthOfVisibleText = toRenderText(renderer()).width(m_start, offset, textPos(), flowIsLTR ? LTR : RTL, isFirstLineStyle());
315 // e.g. In the case of an LTR inline box truncated in an RTL flow then we can
509 // e.g. In the case of LTR text truncated in an RTL Context, the correct behavior is:
515 LayoutUnit widthOfVisibleText = toRenderText(renderer()).width(m_start, m_truncation, textPos(), isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle());
1118 width = toRenderText(renderer()).width(m_start, m_truncation, textPos(), isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle());
1395 toRenderText(renderer()).width(m_start, paintStart - m_start, textPos(), isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle());
1398 toRenderText(renderer()).width(paintStart, paintEnd - paintStart, textPos() + start, isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle());
H A DInlineBox.h252 TextDirection direction() const { return bidiLevel() % 2 ? RTL : LTR; }
H A DRenderImage.cpp340 if (textRun.direction() == RTL) {
/external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
H A DHarfBuzzShaper.h104 bool rtl() { return m_direction == RTL; }
/external/chromium_org/third_party/WebKit/Source/modules/notifications/
H A DNotification.cpp140 return dir() == "rtl" ? RTL : LTR;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDragImage.cpp191 if (hasStrongDirectionality && textRun.direction() == RTL) {
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dlocal_ntp.js43 RTL: 'rtl', // Right-to-left language text.
1028 document.body.classList.add(CLASSES.RTL);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DBaseMultipleFieldsDateAndTimeInputType.cpp329 TextDirection contentDirection = element().locale().isRTL() ? RTL : LTR;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextFormControlElement.cpp650 return textDirection == RTL ? "rtl" : "ltr";

Completed in 980 milliseconds

12