Searched refs:codePointArray (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/packages/inputmethods/LatinIME/native/jni/tests/dictionary/utils/ |
D | byte_array_utils_test.cpp | 82 int codePointArray[3]; in TEST() local 84 codePointArray, &pos)); in TEST() 85 EXPECT_EQ(0x10FF00, codePointArray[0]); in TEST() 86 EXPECT_EQ(0x20, codePointArray[1]); in TEST() 87 EXPECT_EQ(0x41, codePointArray[2]); in TEST() 94 const int codePointArray[] = { 0x10FF00, 0x20, 0x41 }; in TEST() local 96 ByteArrayUtils::writeCodePointsAndAdvancePosition(buffer, codePointArray, 3, in TEST()
|
/aosp_15_r20/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/ |
D | StringUtilsTests.java | 430 final int[] codePointArray = StringUtils.toCodePointArray(STR_WITH_SUPPLEMENTARY_CHAR, 0, in testToCodePointArray() local 432 assertEquals("toCodePointArray, size matches", codePointArray.length, in testToCodePointArray() 435 assertEquals("toCodePointArray position " + i, codePointArray[i], EXPECTED_RESULT[i]); in testToCodePointArray() 447 int[] codePointArray = new int[50]; in testCopyCodePointsAndReturnCodePointCount() local 448 int codePointCount = StringUtils.copyCodePointsAndReturnCodePointCount(codePointArray, in testCopyCodePointsAndReturnCodePointCount() 454 assertEquals("copyCodePointsAndReturnCodePointCount position " + i, codePointArray[i], in testCopyCodePointsAndReturnCodePointCount() 458 codePointCount = StringUtils.copyCodePointsAndReturnCodePointCount(codePointArray, in testCopyCodePointsAndReturnCodePointCount() 464 assertEquals("copyCodePointsAndReturnCodePointCount position " + i, codePointArray[i], in testCopyCodePointsAndReturnCodePointCount() 470 codePointCount = StringUtils.copyCodePointsAndReturnCodePointCount(codePointArray, in testCopyCodePointsAndReturnCodePointCount() 475 assertEquals("copyCodePointsAndReturnCodePointCount position " + i, codePointArray[i], in testCopyCodePointsAndReturnCodePointCount() [all …]
|
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/test/ |
H A D | CheckLogicalGroupings.java | 123 for (int cp : With.codePointArray(value)) { in Fingerprint()
|
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/ |
H A D | With.java | 177 public static int[] codePointArray(CharSequence source) { in codePointArray() method in With
|
H A D | SimpleUnicodeSetFormatter.java | 168 for (int cp : With.codePointArray(s)) { in appendWithHex()
|
H A D | Emoji.java | 228 for (int cp : With.codePointArray(characters)) {
|