Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/text/
DTextDirectionHeuristics.java69 private static enum TriState { enum in TextDirectionHeuristics
129 private static TriState isRtlText(int directionality) { in isRtlText()
132 return TriState.FALSE; in isRtlText()
135 return TriState.TRUE; in isRtlText()
137 return TriState.UNKNOWN; in isRtlText()
141 private static TriState isRtlTextOrFormat(int directionality) { in isRtlTextOrFormat()
146 return TriState.FALSE; in isRtlTextOrFormat()
151 return TriState.TRUE; in isRtlTextOrFormat()
153 return TriState.UNKNOWN; in isRtlTextOrFormat()
168 TriState checkRtl(char[] text, int start, int count); in checkRtl()
[all …]
/frameworks/base/
Dpreloaded-classes687 android.text.TextDirectionHeuristics$TriState