HomeSort by relevance Sort by last modified time
    Searched defs:isRtl (Results 1 - 19 of 19) sorted by null

  /frameworks/base/core/java/android/text/
TextDirectionHeuristic.java 33 boolean isRtl(char[] array, int start, int count);
45 boolean isRtl(CharSequence cs, int start, int count);
TextDirectionHeuristics.java 130 public boolean isRtl(char[] array, int start, int count) {
131 return isRtl(CharBuffer.wrap(array), start, count);
135 public boolean isRtl(CharSequence cs, int start, int count) {
BidiFormatter.java 303 final boolean isRtl = heuristic.isRtl(str, 0, str.length());
305 if (!mIsRtlContext && (isRtl || getExitDir(str) == DIR_RTL)) {
308 if (mIsRtlContext && (!isRtl || getExitDir(str) == DIR_LTR)) {
332 final boolean isRtl = heuristic.isRtl(str, 0, str.length());
334 if (!mIsRtlContext && (isRtl || getEntryDir(str) == DIR_RTL)) {
337 if (mIsRtlContext && (!isRtl || getEntryDir(str) == DIR_LTR)) {
350 public boolean isRtl(String str) {
351 return mDefaultTextDirectionHeuristic.isRtl(str, 0, str.length())
    [all...]
  /frameworks/support/v4/java/android/support/v4/text/
TextDirectionHeuristicCompat.java 33 boolean isRtl(char[] array, int start, int count);
45 boolean isRtl(CharSequence cs, int start, int count);
TextDirectionHeuristicsCompat.java 124 public boolean isRtl(char[] array, int start, int count) {
125 return isRtl(CharBuffer.wrap(array), start, count);
129 public boolean isRtl(CharSequence cs, int start, int count) {
BidiFormatter.java 297 final boolean isRtl = heuristic.isRtl(str, 0, str.length());
299 if (!mIsRtlContext && (isRtl || getExitDir(str) == DIR_RTL)) {
302 if (mIsRtlContext && (!isRtl || getExitDir(str) == DIR_LTR)) {
324 final boolean isRtl = heuristic.isRtl(str, 0, str.length());
326 if (!mIsRtlContext && (isRtl || getEntryDir(str) == DIR_RTL)) {
329 if (mIsRtlContext && (!isRtl || getEntryDir(str) == DIR_LTR)) {
342 public boolean isRtl(String str) {
343 return mDefaultTextDirectionHeuristicCompat.isRtl(str, 0, str.length())
    [all...]
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
LocalizationUtils.java 77 * Jni binding to base::i18n::IsRTL.
80 public static boolean isRtl() {
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BidiRenderer.java 41 boolean isRtl;
45 public ScriptRun(int start, int limit, boolean isRtl) {
48 this.isRtl = isRtl;
76 * @param isRtl is the text right-to-left
88 /* package */ float renderText(int start, int limit, boolean isRtl, float advances[],
92 for (ScriptRun run : getScriptRuns(text, start, limit, isRtl, paint.getFonts())) {
94 flag |= isRtl ? Font.LAYOUT_RIGHT_TO_LEFT : Font.LAYOUT_LEFT_TO_RIGHT;
187 boolean isRtl, List<FontInfo> fonts) {
195 ScriptRun run = new ScriptRun(scriptStart, scriptLimit, isRtl);
    [all...]
Paint_Delegate.java 578 return delegate.measureText(text, index, count, isRtl(bidiFlags));
617 float res = delegate.measureText(text, start, end - start + 1, isRtl(bidiFlags));
991 boolean isRtl = isRtl(flags);
995 index, limit, isRtl, advances, advancesIndex, false, 0, 0);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
ButtonDropTarget.java 120 private boolean isRtl() {
137 if (isRtl()) {
  /packages/apps/Launcher3/src/com/android/launcher3/
ButtonDropTarget.java 124 private boolean isRtl() {
141 if (isRtl()) {
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
UniscribeHelper.cpp 125 bool isRtl,
132 , m_isRtl(isRtl)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java 419 public boolean isRtl(String locale) {
  /packages/apps/DeskClock/src/com/android/deskclock/
DeskClock.java 478 private boolean isRtl() {
484 if (isRtl()) {
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 
  /prebuilts/misc/common/layoutlib_api/
layoutlib_api-prebuilt.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 782 milliseconds