Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/text/
DTextDirectionHeuristics.java68 private static enum TriState { enum in TextDirectionHeuristics
127 private static TriState isRtlText(int directionality) { in isRtlText()
130 return TriState.FALSE; in isRtlText()
133 return TriState.TRUE; in isRtlText()
135 return TriState.UNKNOWN; in isRtlText()
139 private static TriState isRtlTextOrFormat(int directionality) { in isRtlTextOrFormat()
144 return TriState.FALSE; in isRtlTextOrFormat()
149 return TriState.TRUE; in isRtlTextOrFormat()
151 return TriState.UNKNOWN; in isRtlTextOrFormat()
164 TriState checkRtl(char[] text, int start, int count); in checkRtl()
[all …]
/frameworks/base/
Dpreloaded-classes791 android.text.TextDirectionHeuristics$TriState