Searched refs:DIR_TYPE_CACHE_SIZE (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/text/
H A DBidiFormatter.java502 * calls on the lowest DIR_TYPE_CACHE_SIZE codepoints are kept in an array for speed.
507 private static final int DIR_TYPE_CACHE_SIZE = 0x700; field in class:BidiFormatter.DirectionalityEstimator
515 DIR_TYPE_CACHE = new byte[DIR_TYPE_CACHE_SIZE];
516 for (int i = 0; i < DIR_TYPE_CACHE_SIZE; i++) {
734 return c < DIR_TYPE_CACHE_SIZE ? DIR_TYPE_CACHE[c] : Character.getDirectionality(c);
/frameworks/support/v4/java/android/support/v4/text/
H A DBidiFormatter.java492 * calls on the lowest DIR_TYPE_CACHE_SIZE codepoints are kept in an array for speed.
497 private static final int DIR_TYPE_CACHE_SIZE = 0x700; field in class:BidiFormatter.DirectionalityEstimator
505 DIR_TYPE_CACHE = new byte[DIR_TYPE_CACHE_SIZE];
506 for (int i = 0; i < DIR_TYPE_CACHE_SIZE; i++) {
724 return c < DIR_TYPE_CACHE_SIZE ? DIR_TYPE_CACHE[c] : Character.getDirectionality(c);

Completed in 383 milliseconds