Searched defs:mIsRtlContext (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/text/
H A DBidiFormatter.java134 private boolean mIsRtlContext; field in class:BidiFormatter.Builder
170 mIsRtlContext = isRtlContext;
206 return BidiFormatter.getDefaultInstanceFromContext(mIsRtlContext);
208 return new BidiFormatter(mIsRtlContext, mFlags, mTextDirectionHeuristic);
226 private final boolean mIsRtlContext; field in class:BidiFormatter
268 mIsRtlContext = isRtlContext;
277 return mIsRtlContext;
308 if (!mIsRtlContext && (isRtl || getExitDir(str) == DIR_RTL)) {
311 if (mIsRtlContext && (!isRtl || getExitDir(str) == DIR_LTR)) {
337 if (!mIsRtlContext
[all...]
/frameworks/support/compat/java/android/support/v4/text/
H A DBidiFormatter.java130 private boolean mIsRtlContext; field in class:BidiFormatter.Builder
166 mIsRtlContext = isRtlContext;
206 return getDefaultInstanceFromContext(mIsRtlContext);
208 return new BidiFormatter(mIsRtlContext, mFlags, mTextDirectionHeuristicCompat);
226 private final boolean mIsRtlContext; field in class:BidiFormatter
262 mIsRtlContext = isRtlContext;
271 return mIsRtlContext;
301 if (!mIsRtlContext && (isRtl || getExitDir(str) == DIR_RTL)) {
304 if (mIsRtlContext && (!isRtl || getExitDir(str) == DIR_LTR)) {
329 if (!mIsRtlContext
[all...]

Completed in 136 milliseconds