Searched refs:checkIsFirstUtf8Byte (Results 1 – 1 of 1) sorted by relevance
144 checkIsFirstUtf8Byte("0"); // First 2 bits: 00 in testIsFirstUtf8Byte()145 checkIsFirstUtf8Byte("A"); // First 2 bits: 01 in testIsFirstUtf8Byte()147 checkIsFirstUtf8Byte("\u00A2"); // 2 bytes in UTF-8. in testIsFirstUtf8Byte()148 checkIsFirstUtf8Byte("\u20AC"); // 3 bytes in UTF-8. in testIsFirstUtf8Byte()149 checkIsFirstUtf8Byte("\uD852\uDF62"); // 4 bytes in UTF-8. (surrogate pair) in testIsFirstUtf8Byte()152 private void checkIsFirstUtf8Byte(String aChar) { in checkIsFirstUtf8Byte() method in UtilityUnitTests