Lines Matching full:ubuffer
1840 UChar ubuffer[64] = {0x0049,0x004E,0x0052,0};
1850 unum_setTextAttribute(nf, UNUM_CURRENCY_CODE, ubuffer, 3, &status);
1855 used = unum_getTextAttribute(nf, UNUM_NEGATIVE_PREFIX, ubuffer, 64, &status);
1856 unum_setTextAttribute(nf, UNUM_NEGATIVE_PREFIX, ubuffer, used, &status);
1861 used = unum_formatDouble(nf, -1234.5, ubuffer, 64, NULL, &status);
1866 if (u_strcmp(expectedNeg, ubuffer) == 0) {
1869 used = unum_formatDouble(nf, 1234.5, ubuffer, 64, NULL, &status);
1874 if (u_strcmp(expectedPos, ubuffer) == 0) {