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

/frameworks/base/core/java/android/text/
H A DBidiFormatter.java166 * @param isRtlContext Whether the context is RTL or not.
168 private void initialize(boolean isRtlContext) { argument
169 mIsRtlContext = isRtlContext;
199 private static BidiFormatter getDefaultInstanceFromContext(boolean isRtlContext) { argument
200 return isRtlContext ? DEFAULT_RTL_INSTANCE : DEFAULT_LTR_INSTANCE;
260 * @param isRtlContext Whether the context directionality is RTL or not.
264 private BidiFormatter(boolean isRtlContext, int flags, TextDirectionHeuristic heuristic) { argument
265 mIsRtlContext = isRtlContext;
273 public boolean isRtlContext() { method in class:BidiFormatter
/frameworks/support/v4/java/android/support/v4/text/
H A DBidiFormatter.java162 * @param isRtlContext Whether the context is RTL or not.
164 private void initialize(boolean isRtlContext) { argument
165 mIsRtlContext = isRtlContext;
195 private static BidiFormatter getDefaultInstanceFromContext(boolean isRtlContext) { argument
196 return isRtlContext ? DEFAULT_RTL_INSTANCE : DEFAULT_LTR_INSTANCE;
256 * @param isRtlContext Whether the context directionality is RTL or not.
260 private BidiFormatter(boolean isRtlContext, int flags, TextDirectionHeuristicCompat heuristic) { argument
261 mIsRtlContext = isRtlContext;
269 public boolean isRtlContext() { method in class:BidiFormatter

Completed in 140 milliseconds