Home | History | Annotate | Download | only in cintltst

Lines Matching defs:ubuffer

1640     UChar ubuffer[64] = {0x0049,0x004E,0x0052,0};
1650 unum_setTextAttribute(nf, UNUM_CURRENCY_CODE, ubuffer, 3, &status);
1655 used = unum_getTextAttribute(nf, UNUM_NEGATIVE_PREFIX, ubuffer, 64, &status);
1656 unum_setTextAttribute(nf, UNUM_NEGATIVE_PREFIX, ubuffer, used, &status);
1661 used = unum_formatDouble(nf, -1234.5, ubuffer, 64, NULL, &status);
1666 if (u_strcmp(expectedNeg, ubuffer) == 0) {
1669 used = unum_formatDouble(nf, 1234.5, ubuffer, 64, NULL, &status);
1674 if (u_strcmp(expectedPos, ubuffer) == 0) {