Searched defs:DIR_TYPE_CACHE_SIZE (Results 1 - 2 of 2) sorted by last modified time

/frameworks/support/core-utils/java/android/support/v4/text/
H A DBidiFormatter.java570 * calls on the lowest DIR_TYPE_CACHE_SIZE codepoints are kept in an array for speed.
575 private static final int DIR_TYPE_CACHE_SIZE = 0x700; field in class:BidiFormatter.DirectionalityEstimator
583 DIR_TYPE_CACHE = new byte[DIR_TYPE_CACHE_SIZE];
584 for (int i = 0; i < DIR_TYPE_CACHE_SIZE; i++) {
802 return c < DIR_TYPE_CACHE_SIZE ? DIR_TYPE_CACHE[c] : Character.getDirectionality(c);
/frameworks/base/core/java/android/text/
H A DBidiFormatter.java580 * calls on the lowest DIR_TYPE_CACHE_SIZE codepoints are kept in an array for speed.
585 private static final int DIR_TYPE_CACHE_SIZE = 0x700; field in class:BidiFormatter.DirectionalityEstimator
593 DIR_TYPE_CACHE = new byte[DIR_TYPE_CACHE_SIZE];
594 for (int i = 0; i < DIR_TYPE_CACHE_SIZE; i++) {
823 return c < DIR_TYPE_CACHE_SIZE ? DIR_TYPE_CACHE[c] : getDirectionality(c);

Completed in 110 milliseconds