Home | History | Annotate | Download | only in text

Lines Matching refs:isRtl

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());
383 final boolean isRtl = heuristic.isRtl(str, 0, str.length());
387 isRtl ? TextDirectionHeuristics.RTL : TextDirectionHeuristics.LTR));
389 if (isRtl != mIsRtlContext) {
390 result.append(isRtl ? RLE : LRE);
398 isRtl ? TextDirectionHeuristics.RTL : TextDirectionHeuristics.LTR));