Home
last modified time | relevance | path

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

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