Home | History | Annotate | Download | only in cintltst

Lines Matching refs:ubuffer

1827     UChar ubuffer[64] = {0x0049,0x004E,0x0052,0};
1837 unum_setTextAttribute(nf, UNUM_CURRENCY_CODE, ubuffer, 3, &status);
1842 used = unum_getTextAttribute(nf, UNUM_NEGATIVE_PREFIX, ubuffer, 64, &status);
1843 unum_setTextAttribute(nf, UNUM_NEGATIVE_PREFIX, ubuffer, used, &status);
1848 used = unum_formatDouble(nf, -1234.5, ubuffer, 64, NULL, &status);
1853 if (u_strcmp(expectedNeg, ubuffer) == 0) {
1856 used = unum_formatDouble(nf, 1234.5, ubuffer, 64, NULL, &status);
1861 if (u_strcmp(expectedPos, ubuffer) == 0) {