Lines Matching defs:temp1

177     UChar temp1[512];
286 u_uastrcpy(temp1, "$100,000,000.00");
307 if(u_strcmp(result, temp1)==0)
321 u_uastrcpy(temp1, "-$10,456.37");
339 if(result && u_strcmp(result, temp1)==0)
343 aescstrdup(result, -1), aescstrdup(temp1, -1));
376 u_uastrcpy(temp1, "Y1,235");
377 temp1[0] = 0xA5; /* Yen sign */
391 if (result && u_strcmp(result, temp1)==0) {
395 aescstrdup(result, -1), aescstrdup(temp1, -1));
433 u_uastrcpy(temp1, "$462.12345");
434 resultlength=u_strlen(temp1);
438 d1=unum_parseDouble(cur_def, temp1, resultlength, &parsepos, &status);
442 log_err("parseDouble('%s') failed. The error is : %s\n", aescstrdup(temp1, resultlength), myErrorName(status));
458 u_uastrcpy(temp1, "($10,456.3E1])");
460 d1=unum_parseDouble(cur_def, temp1, u_strlen(temp1), &parsepos, &status);
463 log_err("Error in unum_parseDouble(..., %s, ...): %s\n", temp1, myErrorName(status));
508 u_uastrcpy(temp1, "#,##0.0#;(#,##0.0#)");
509 pattern=unum_open(UNUM_IGNORE,temp1, u_strlen(temp1), NULL, NULL,&status);
534 if(u_strcmp(result, temp1)!=0)
571 unum_getSymbol(cur_def, symType, temp1, sizeof(temp1), &status);
572 unum_setSymbol(cur_frpattern, symType, temp1, -1, &status);
601 unum_getSymbol(cur_def, symType, temp1, sizeof(temp1), &status);
603 if(U_FAILURE(status) || u_strcmp(temp1, temp2) != 0)
619 unum_format(cur_frpattern, l, temp1, resultlength, &pos1, &status);
634 if(u_strcmp(result, temp1) != 0) {
635 log_err("Formatting failed after setting symbols. result=%s temp1=%s\n", result, temp1);
1277 char temp1[128];
1304 log_err("FAIL: Error in unum_formatDouble result %s instead of %s\n", u_austrcpy(temp1, result), u_austrcpy(temp2, expected) );
1312 UChar temp1[512];
1326 u_uastrcpy(temp1, "*#,##0.0#*;(#,##0.0#)");
1328 pattern=unum_open(UNUM_IGNORE,temp1, u_strlen(temp1), NULL, NULL,&status);
1331 log_err("error in unum_openPattern(%s): %s\n", temp1, myErrorName(status) );
1338 /* u_uastrcpy(temp1, "*x#,###,###,##0.0#;(*x#,###,###,##0.0#)"); */
1339 u_uastrcpy(temp1, "*x#,###,###,##0.0#;*x(###,###,##0.0#)"); // input pattern
1342 pattern=unum_open(UNUM_IGNORE,temp1, u_strlen(temp1), "en_US",NULL, &status);
1345 log_err_status(status, "error in padding unum_openPattern(%s): %s\n", temp1, myErrorName(status) );
1378 /* u_uastrcpy(temp1, "(xxxxxxx10,456.37)"); */
1379 u_uastrcpy(temp1, "xxxxx(10,456.37)");
1396 if(u_strcmp(result, temp1)==0)
1433 UChar temp1[512];
1447 u_uastrcpy(temp1, "#.#E0");
1448 fmt = unum_open(UNUM_IGNORE, temp1, u_strlen(temp1), "en_US", NULL, &status);
2072 char temp1[256];
2126 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));