Home | History | Annotate | Download | only in intltest

Lines Matching defs:fmt1

1412     MessageFormat* fmt1 = new MessageFormat( formatStr, status );
1417 if (fmt1 == NULL) {
1418 it_err("testCopyConstructor2: (fmt1 != NULL)");
1422 fmt2 = new MessageFormat( *fmt1 );
1423 result = fmt1->format( &fargs, 1, resultStr, fp, status );
1430 fmt3 = (MessageFormat*) fmt1->clone();
1442 result = fmt1->format( &fargs, 1, resultStr, fp, status );
1448 delete fmt1;