Lines Matching refs:toHex
287 IntlTest::toHex(uint32_t number, int32_t digits) {
1779 static inline UChar toHex(int32_t i) {
1791 result += toHex((c >> 12) & 0xF);
1792 result += toHex((c >> 8) & 0xF);
1793 result += toHex((c >> 4) & 0xF);
1794 result += toHex( c & 0xF);
1900 actual + "=0x" + toHex(actual) +
1901 "; expected " + expected + "=0x" + toHex(expected));
1906 logln((UnicodeString)"Ok: " + message + "; got " + actual + "=0x" + toHex(actual));