Home | History | Annotate | Download | only in intltest

Lines Matching refs:toHex

270 IntlTest::toHex(uint32_t number, int32_t digits) {
1634 static inline UChar toHex(int32_t i) {
1646 result += toHex((c >> 12) & 0xF);
1647 result += toHex((c >> 8) & 0xF);
1648 result += toHex((c >> 4) & 0xF);
1649 result += toHex( c & 0xF);
1751 actual + "=0x" + toHex(actual) +
1752 "; expected " + expected + "=0x" + toHex(expected));
1757 logln((UnicodeString)"Ok: " + message + "; got " + actual + "=0x" + toHex(actual));