HomeSort by relevance Sort by last modified time
    Searched refs:RTL (Results 1 - 25 of 44) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/text/
TextDirection.h 31 enum TextDirection { RTL, LTR };
  /libcore/luni/src/test/java/libcore/java/text/
OldBidiTest.java 76 String RTL = "\u05DC\u05DD";
78 String defText = LTR + newLine + RTL + LTR + RTL;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyboardCodesSet.java 100 private static final int[] RTL = {
132 LANGUAGE_ARABIC, RTL,
133 LANGUAGE_PERSIAN, RTL,
134 LANGUAGE_HEBREW, RTL,
  /external/webkit/Source/WebKit/chromium/src/
ExternalPopupMenu.cpp 144 if (style.textDirection() == WebCore::RTL)
156 m_popupMenuClient->menuStyle().textDirection() == WebCore::RTL;
WebNotification.cpp 101 return (m_private->direction() == RTL) ?
ChromeClientImpl.cpp 625 WebTextDirection textDirection = (dir == RTL) ?
773 if (inputItem.textDirection == WebCore::RTL)
798 info->rightAligned = popupContainer->menuStyle().textDirection() == RTL;
842 // FIXME: RTL style not supported by the compositor yet.
  /external/webkit/Source/WebCore/notifications/
Notification.h 82 TextDirection direction() const { return dir() == "rtl" ? RTL : LTR; }
  /external/webkit/Source/WebCore/rendering/
InlineIterator.h 109 return dir == RTL ? RightToLeftEmbedding : LeftToRightEmbedding;
110 return dir == RTL ? RightToLeftOverride : LeftToRightOverride;
InlineBox.h 277 TextDirection direction() const { return m_bidiEmbeddingLevel % 2 ? RTL : LTR; }
RenderThemeChromiumLinux.cpp 271 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13;
RenderMenuList.cpp 98 TextDirection direction = (m_buttonText && m_buttonText->text()->defaultWritingDirection() == WTF::Unicode::RightToLeft) ? RTL : LTR;
RenderThemeChromiumSkia.cpp 555 if (renderProgress->style()->direction() == RTL)
  /frameworks/base/core/java/android/text/
TextDirectionHeuristics.java 34 public static final TextDirectionHeuristic RTL =
85 * Return true if the default text direction is rtl.
161 * Returns whether the range of text is RTL according to the algorithm.
MeasuredText.java 138 } else if (textDir == TextDirectionHeuristics.RTL) {
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp 351 // Use popupInitialCoordinate.x() + rightOffset because RTL position
359 if (m_listBox->m_popupClient->menuStyle().textDirection() == RTL && widgetRect.x() < screen.x()) {
445 // Adjust the starting x-axis for RTL dropdown. For RTL dropdown, the right edge
451 bool rightAligned = m_listBox->m_popupClient->menuStyle().textDirection() == RTL;
932 bool rightAligned = m_popupClient->menuStyle().textDirection() == RTL;
946 // FIXME: We should leftTruncate for the rtl case.
962 bool rtl = style.textDirection() == RTL; local
    [all...]
  /external/webkit/Source/WebCore/editing/mac/
EditorMac.mm 183 case RTL:
  /external/webkit/Source/WebCore/platform/graphics/
WidthIterator.cpp 66 unsigned expansionOpportunityCount = Font::expansionOpportunityCount(m_run.characters(), m_end, m_run.ltr() ? LTR : RTL, isAfterExpansion);
85 bool rtl = m_run.rtl(); local
123 const GlyphData& glyphData = m_font->glyphDataForCharacter(c, rtl);
151 const GlyphData& uppercaseGlyphData = m_font->glyphDataForCharacter(toUpper(c), rtl);
180 || (m_run.rtl() && currentCharacter)) {
  /external/webkit/Source/WebCore/editing/
visible_units.cpp     [all...]
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk.cpp 176 case RTL:
650 if (renderObject->style()->direction() == RTL)
RenderThemeGtk2.cpp 333 if (style->direction() == RTL)
385 if (style->direction() == RTL)
409 if (style->direction() == RTL)
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
BidiTest.java 946 String RTL = "\u05DC\u05DD";
948 String defText = LTR + newLine + RTL + LTR + RTL;
    [all...]
  /external/chromium/chrome/browser/resources/ntp/
drag_drop_controller.js 88 // If we're in an RTL language, reflect the coordinates so the delegate
  /external/chromium-trace/src/shared/js/
util.js 126 * @return {boolean} True if Chrome is running an RTL UI.
129 return document.documentElement.dir == 'rtl';
  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.cpp 78 unsigned expansionOpportunityCount = Font::expansionOpportunityCount(m_run.characters(), m_end, m_run.ltr() ? LTR : RTL, isAfterExpansion);
189 unsigned indexOfFontTransition = m_run.rtl() ? m_end - 1 : 0;
190 const UChar* curr = m_run.rtl() ? cp + m_end - 1 : cp;
191 const UChar* end = m_run.rtl() ? cp - 1 : cp + m_end;
219 curr = m_run.rtl() ? curr - (isSurrogate ? 2 : 1) : curr + (isSurrogate ? 2 : 1);
249 int itemStart = m_run.rtl() ? index + 1 : static_cast<int>(indexOfFontTransition);
250 int itemLength = m_run.rtl() ? indexOfFontTransition - index : index - indexOfFontTransition;
256 int itemLength = m_run.rtl() ? indexOfFontTransition + 1 : m_end - indexOfFontTransition;
258 int itemStart = m_run.rtl() ? 0 : indexOfFontTransition;
  /external/webkit/Source/WebCore/css/
CSSPrimitiveValueMappings.h     [all...]

Completed in 365 milliseconds

1 2