Home | History | Annotate | Download | only in cintltst

Lines Matching refs:temp1

139     UChar temp1[512];
248 u_uastrcpy(temp1, "$100,000,000.00");
269 if(u_strcmp(result, temp1)==0)
283 u_uastrcpy(temp1, "-$10,456.37");
301 if(result && u_strcmp(result, temp1)==0)
305 aescstrdup(result, -1), aescstrdup(temp1, -1));
338 u_uastrcpy(temp1, "Y1,235");
339 temp1[0] = 0xA5; /* Yen sign */
353 if (result && u_strcmp(result, temp1)==0) {
357 aescstrdup(result, -1), aescstrdup(temp1, -1));
395 u_uastrcpy(temp1, "$462.12345");
396 resultlength=u_strlen(temp1);
400 d1=unum_parseDouble(cur_def, temp1, resultlength, &parsepos, &status);
404 log_err("parseDouble('%s') failed. The error is : %s\n", aescstrdup(temp1, resultlength), myErrorName(status));
420 u_uastrcpy(temp1, "($10,456.3E1])");
422 d1=unum_parseDouble(cur_def, temp1, u_strlen(temp1), &parsepos, &status);
425 log_err("Error in unum_parseDouble(..., %s, ...): %s\n", temp1, myErrorName(status));
470 u_uastrcpy(temp1, "#,##0.0#;(#,##0.0#)");
471 pattern=unum_open(UNUM_IGNORE,temp1, u_strlen(temp1), NULL, NULL,&status);
496 if(u_strcmp(result, temp1)!=0)
533 unum_getSymbol(cur_def, symType, temp1, sizeof(temp1), &status);
534 unum_setSymbol(cur_frpattern, symType, temp1, -1, &status);
563 unum_getSymbol(cur_def, symType, temp1, sizeof(temp1), &status);
565 if(U_FAILURE(status) || u_strcmp(temp1, temp2) != 0)
581 unum_format(cur_frpattern, l, temp1, resultlength, &pos1, &status);
596 if(u_strcmp(result, temp1) != 0) {
597 log_err("Formatting failed after setting symbols. result=%s temp1=%s\n", result, temp1);
1220 char temp1[128];
1247 log_err("FAIL: Error in unum_formatDouble result %s instead of %s\n", u_austrcpy(temp1, result), u_austrcpy(temp2, expected) );
1255 UChar temp1[512];
1268 u_uastrcpy(temp1, "*#,##0.0#*;(#,##0.0#)");
1270 pattern=unum_open(UNUM_IGNORE,temp1, u_strlen(temp1), NULL, NULL,&status);
1273 log_err("error in unum_openPattern(%s): %s\n", temp1, myErrorName(status) );
1280 /* u_uastrcpy(temp1, "*x#,###,###,##0.0#;(*x#,###,###,##0.0#)"); */
1281 u_uastrcpy(temp1, "*x#,###,###,##0.0#;*x(###,###,##0.0#)");
1283 pattern=unum_open(UNUM_IGNORE,temp1, u_strlen(temp1), "en_US",NULL, &status);
1286 log_err_status(status, "error in padding unum_openPattern(%s): %s\n", temp1, myErrorName(status) );;
1308 if(u_strcmp(result, temp1)!=0)
1314 /* u_uastrcpy(temp1, "(xxxxxxx10,456.37)"); */
1315 u_uastrcpy(temp1, "xxxxx(10,456.37)");
1332 if(u_strcmp(result, temp1)==0)
1369 UChar temp1[512];
1383 u_uastrcpy(temp1, "#.#E0");
1384 fmt = unum_open(UNUM_IGNORE, temp1, u_strlen(temp1), NULL, NULL, &status);
1963 char temp1[256];
2017 log_data_err("Result from cloned formatter not identical to the original. Original: %s Cloned: %s - (Are you missing data?)",u_austrcpy(temp1, buffer),u_austrcpy(temp2,buffer_cloned));