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

/frameworks/base/core/java/android/text/
H A DBidiFormatter.java133 private boolean mIsRtlContext; field in class:BidiFormatter.Builder
169 mIsRtlContext = isRtlContext;
209 return getDefaultInstanceFromContext(mIsRtlContext);
211 return new BidiFormatter(mIsRtlContext, mFlags, mTextDirectionHeuristic);
229 private final boolean mIsRtlContext; field in class:BidiFormatter
265 mIsRtlContext = isRtlContext;
274 return mIsRtlContext;
305 if (!mIsRtlContext && (isRtl || getExitDir(str) == DIR_RTL)) {
308 if (mIsRtlContext && (!isRtl || getExitDir(str) == DIR_LTR)) {
334 if (!mIsRtlContext
[all...]
/frameworks/support/v4/java/android/support/v4/text/
H A DBidiFormatter.java129 private boolean mIsRtlContext; field in class:BidiFormatter.Builder
165 mIsRtlContext = isRtlContext;
205 return getDefaultInstanceFromContext(mIsRtlContext);
207 return new BidiFormatter(mIsRtlContext, mFlags, mTextDirectionHeuristicCompat);
225 private final boolean mIsRtlContext; field in class:BidiFormatter
261 mIsRtlContext = isRtlContext;
270 return mIsRtlContext;
299 if (!mIsRtlContext && (isRtl || getExitDir(str) == DIR_RTL)) {
302 if (mIsRtlContext && (!isRtl || getExitDir(str) == DIR_LTR)) {
326 if (!mIsRtlContext
[all...]

Completed in 114 milliseconds