Lines Matching refs:Formattable

100         Formattable params [] = {  in Test4074764()
101 Formattable(UnicodeString("BUG")), in Test4074764()
102 Formattable(0, Formattable::kIsDate) in Test4074764()
195 Formattable params []= { in Test4031438()
196 Formattable((int32_t)7) in Test4031438()
206 Formattable *objs = messageFormatter->parse(tempBuffer, pp, count); in Test4031438()
216 Formattable obj = objs[i]; in Test4031438()
218 if(obj.getType() == Formattable::kString) in Test4031438()
223 case Formattable::kLong: fmt->format(obj.getLong(), temp); break; in Test4031438()
224 case Formattable::kInt64: fmt->format(obj.getInt64(), temp); break; in Test4031438()
225 case Formattable::kDouble: fmt->format(obj.getDouble(), temp); break; in Test4031438()
231 Formattable obj1 = params[i]; in Test4031438()
233 if(obj1.getType() == Formattable::kString) in Test4031438()
238 case Formattable::kLong: fmt->format(obj1.getLong(), temp1); break; in Test4031438()
239 case Formattable::kInt64: fmt->format(obj1.getInt64(), temp1); break; in Test4031438()
240 case Formattable::kDouble: fmt->format(obj1.getDouble(), temp1); break; in Test4031438()
309 Formattable obj; in Test4052223()
495 Formattable *array = mf->parse(UnicodeString(""), pp, count); in Test4116444()
535 Formattable *objs1 = NULL; in Test4114739()
599 … logln("Format with -INF : " + fmt->format(Formattable(-uprv_getInfinity()), str, bogus, status)); in Test4106661()
602 logln("Format with -1.0 : " + fmt->format(Formattable(-1.0), str, bogus, status)); in Test4106661()
605 logln("Format with -1.0 : " + fmt->format(Formattable(-1.0), str, bogus, status)); in Test4106661()
608 logln("Format with 0 : " + fmt->format(Formattable((int32_t)0), str, bogus, status)); in Test4106661()
611 logln("Format with 0.9 : " + fmt->format(Formattable(0.9), str, bogus, status)); in Test4106661()
614 logln("Format with 1.0 : " + fmt->format(Formattable(1.0), str, bogus, status)); in Test4106661()
617 logln("Format with 1.5 : " + fmt->format(Formattable(1.5), str, bogus, status)); in Test4106661()
620 logln("Format with 2 : " + fmt->format(Formattable((int32_t)2), str, bogus, status)); in Test4106661()
623 logln("Format with 2.1 : " + fmt->format(Formattable(2.1), str, bogus, status)); in Test4106661()
626 logln("Format with NaN : " + fmt->format(Formattable(uprv_getNaN()), str, bogus, status)); in Test4106661()
629 logln("Format with +INF : " + fmt->format(Formattable(uprv_getInfinity()), str, bogus, status)); in Test4106661()
658 … logln("Format with -INF : " + fmt->format(Formattable(-uprv_getInfinity()), str, bogus, status)); in Test4094906()
661 logln("Format with -1.0 : " + fmt->format(Formattable(-1.0), str, bogus, status)); in Test4094906()
664 logln("Format with -1.0 : " + fmt->format(Formattable(-1.0), str, bogus, status)); in Test4094906()
667 logln("Format with 0 : " + fmt->format(Formattable((int32_t)0), str, bogus, status)); in Test4094906()
670 logln("Format with 0.9 : " + fmt->format(Formattable(0.9), str, bogus, status)); in Test4094906()
673 logln("Format with 1.0 : " + fmt->format(Formattable(1.0), str, bogus, status)); in Test4094906()
676 logln("Format with 1.5 : " + fmt->format(Formattable(1.5), str, bogus, status)); in Test4094906()
679 logln("Format with 2 : " + fmt->format(Formattable((int32_t)2), str, bogus, status)); in Test4094906()
682 logln("Format with 2.1 : " + fmt->format(Formattable(2.1), str, bogus, status)); in Test4094906()
685 logln("Format with NaN : " + fmt->format(Formattable(uprv_getNaN()), str, bogus, status)); in Test4094906()
688 logln("Format with +INF : " + fmt->format(Formattable(uprv_getInfinity()), str, bogus, status)); in Test4094906()
704 Formattable *objs = 0; in Test4118592()
723 if(objs[0].getType() == Formattable::kString) in Test4118592()
726 …logln((UnicodeString)" " + (objs[0].getType() == Formattable::kLong ? objs[0].getLong() : objs[0]… in Test4118592()
747 Formattable *objs = mf->parse(forParsing, pp, count); in Test4118594()
757 Formattable oldobjs [] = {Formattable(3.1415)}; in Test4118594()
771 Formattable *newobjs = mf->parse(result, pp, count1); in Test4118594()
807 Formattable testArgs [] = { in Test4105380()
808 Formattable((int32_t)12373), in Test4105380()
809 Formattable((UnicodeString)"MyDisk") in Test4105380()
844 Formattable *objs = mf->parse(texts[i], pp, count); in Test4120552()
887 Formattable objs [] = { in Test4142938()
888 Formattable((int32_t)i) in Test4142938()