Home | History | Annotate | Download | only in intltest

Lines Matching defs:fmt1

1410     MessageFormat* fmt1 = new MessageFormat( formatStr, status );
1415 if (fmt1 == NULL) {
1416 it_err("testCopyConstructor2: (fmt1 != NULL)");
1420 fmt2 = new MessageFormat( *fmt1 );
1421 result = fmt1->format( &fargs, 1, resultStr, fp, status );
1428 fmt3 = (MessageFormat*) fmt1->clone();
1440 result = fmt1->format( &fargs, 1, resultStr, fp, status );
1446 delete fmt1;