Lines Matching defs:ubuffer
1846 UChar ubuffer[64] = {0x0049,0x004E,0x0052,0};
1856 unum_setTextAttribute(nf, UNUM_CURRENCY_CODE, ubuffer, 3, &status);
1861 used = unum_getTextAttribute(nf, UNUM_NEGATIVE_PREFIX, ubuffer, 64, &status);
1862 unum_setTextAttribute(nf, UNUM_NEGATIVE_PREFIX, ubuffer, used, &status);
1867 used = unum_formatDouble(nf, -1234.5, ubuffer, 64, NULL, &status);
1872 if (u_strcmp(expectedNeg, ubuffer) == 0) {
1875 used = unum_formatDouble(nf, 1234.5, ubuffer, 64, NULL, &status);
1880 if (u_strcmp(expectedPos, ubuffer) == 0) {