Lines Matching refs:dfFoo
799 DecimalFormat *dfFoo = new DecimalFormat(UnicodeString("000"), status);
802 delete dfFoo;
808 dfFoo->applyPattern("0000;-000", status);
809 failure(status, "dfFoo->applyPattern");
811 if (dfFoo->toPattern(temp) != UnicodeString("0000"))
812 errln("ERROR: dfFoo.toPattern : " + dfFoo->toPattern(temp));
814 logln(dfFoo->format((int32_t)42, temp, pos));
815 logln(dfFoo->format((int32_t)-42, temp, pos));
816 dfFoo->applyPattern("000;-000", status);
817 failure(status, "dfFoo->applyPattern");
818 if (dfFoo->toPattern(temp) != UnicodeString("000"))
819 errln("ERROR: dfFoo.toPattern : " + dfFoo->toPattern(temp));
820 logln(dfFoo->format((int32_t)42,temp, pos));
821 logln(dfFoo->format((int32_t)-42, temp, pos));
823 dfFoo->applyPattern("000;-0000", status);
824 failure(status, "dfFoo->applyPattern");
825 if (dfFoo->toPattern(temp) != UnicodeString("000"))
826 errln("ERROR: dfFoo.toPattern : " + dfFoo->toPattern(temp));
827 logln(dfFoo->format((int32_t)42, temp, pos));
828 logln(dfFoo->format((int32_t)-42, temp, pos));
830 dfFoo->applyPattern("0000;-000", status);
831 failure(status, "dfFoo->applyPattern");
832 if (dfFoo->toPattern(temp) != UnicodeString("0000"))
833 errln("ERROR: dfFoo.toPattern : " + dfFoo->toPattern(temp));
834 logln(dfFoo->format((int32_t)42, temp, pos));
835 logln(dfFoo->format((int32_t)-42, temp, pos));
840 delete dfFoo;