• Home
  • Raw
  • Download

Lines Matching refs:res1

50     UnicodeString res1, res2;  in TestSimpleExample()  local
61 res1 = form->format(i, str, fpos, status ); in TestSimpleExample()
68 … it_logln(UnicodeString("") + ix + UnicodeString(" -> ") + res1 + UnicodeString(" -> ") + res2); in TestSimpleExample()
173 UnicodeString res1, res2; in TestComplexExample() local
174 pattform->toPattern( res1 ); in TestComplexExample()
175 it_logln("MessageFormat toPattern: " + res1); in TestComplexExample()
176 fileform->toPattern( res1 ); in TestComplexExample()
177 it_logln("ChoiceFormat toPattern: " + res1); in TestComplexExample()
178 if (res1 == "-1#are corrupted files|0#are no files|1#is one file|2#are {2} files") { in TestComplexExample()
348 form_pat.toPattern( res1 ); in TestComplexExample()
349 if (res1 == "0#none|1#one|2#many") { in TestComplexExample()
359 form_pat.toPattern( res1 ); in TestComplexExample()
360 it_logln(UnicodeString("ChoiceFormat adoptChoices toPattern: ") + res1); in TestComplexExample()
361 if (res1 == "3#third|4#forth") { in TestComplexExample()
371 res1 = form_pat.format( arg_double, str, fpos ); in TestComplexExample()
372 it_logln(UnicodeString("ChoiceFormat format:") + res1); in TestComplexExample()
373 if (res1 != "third") it_errln("*** ChoiceFormat format (double, ...) result!"); in TestComplexExample()
379 res1 = form_pat.format( arg_64, str, fpos ); in TestComplexExample()
380 it_logln(UnicodeString("ChoiceFormat format:") + res1); in TestComplexExample()
381 if (res1 != "third") it_errln("*** ChoiceFormat format (int64_t, ...) result!"); in TestComplexExample()
387 res1 = form_pat.format( arg_long, str, fpos ); in TestComplexExample()
388 it_logln(UnicodeString("ChoiceFormat format:") + res1); in TestComplexExample()
389 if (res1 != "third") it_errln("*** ChoiceFormat format (int32_t, ...) result!"); in TestComplexExample()
395 res1 = form_pat.format( ft, str, fpos, status ); in TestComplexExample()
402 it_logln(UnicodeString("ChoiceFormat format:") + res1); in TestComplexExample()
403 if (res1 != "third") it_errln("*** ChoiceFormat format (Formattable, ...) result!"); in TestComplexExample()
409 res1 = form_pat.format( fta, 1, str, fpos, status ); in TestComplexExample()
416 it_logln(UnicodeString("ChoiceFormat format:") + res1); in TestComplexExample()
417 if (res1 != "third") it_errln("*** ChoiceFormat format (Formattable[], cnt, ...) result!"); in TestComplexExample()