HomeSort by relevance Sort by last modified time
    Searched defs:utf8Lengths (Results 1 - 3 of 3) sorted by null

  /external/guava/guava-tests/test/com/google/common/base/
Utf8Test.java 54 HashMap<Integer, Integer> utf8Lengths = new HashMap<Integer, Integer>();
55 utf8Lengths.put(0x00, 1);
56 utf8Lengths.put(0x7f, 1);
57 utf8Lengths.put(0x80, 2);
58 utf8Lengths.put(0x7ff, 2);
59 utf8Lengths.put(0x800, 3);
60 utf8Lengths.put(Character.MIN_SUPPLEMENTARY_CODE_POINT - 1, 3);
61 utf8Lengths.put(Character.MIN_SUPPLEMENTARY_CODE_POINT, 4);
62 utf8Lengths.put(Character.MAX_CODE_POINT, 4);
64 Integer[] codePoints = utf8Lengths.keySet().toArray(new Integer[]{})
    [all...]
  /external/icu/icu4c/source/common/
unisetspan.h 114 int32_t *utf8Lengths;
116 // Pointer to the part of the (utf8Lengths) memory block that stores
120 // Pointer to the part of the (utf8Lengths) memory block that stores
  /external/icu/icu4c/source/test/intltest/
usettest.cpp     [all...]

Completed in 4609 milliseconds