Home | History | Annotate | Download | only in intltest

Lines Matching refs:objs

201         Formattable *objs = messageFormatter->parse(tempBuffer, pp, count);
202 //if(objs[7/*params.length*/] != NULL)
211 Formattable obj = objs[i];
240 //if (objs[i] != NULL && objs[i].getString(temp1) != params[i].getString(temp2)) {
242 errln("Parse failed on object " + objs[i].getString(temp1) + " at index : " + i);
247 delete [] objs;
699 Formattable *objs = 0;
707 //Object[] objs = mf.parse(formatted, new ParsePosition(0));
710 objs = mf->parse(formatted, pp, count);
714 if (objs == NULL)
718 if(objs[0].getType() == Formattable::kString)
719 logln((UnicodeString)" " + objs[0].getString(temp));
721 logln((UnicodeString)" " + (objs[0].getType() == Formattable::kLong ? objs[0].getLong() : objs[0].getDouble()));
722 delete[] objs;
739 //Object[] objs = mf.parse(forParsing, new ParsePosition(0));
742 Formattable *objs = mf->parse(forParsing, pp, count);
747 if (objs[0].getString(str) != "z")
748 errln("argument0: \"" + objs[0].getString(str) + "\"");
775 delete [] objs;
837 //Object[] objs = mf.parse(texts[i], pp);
839 Formattable *objs = mf->parse(texts[i], pp, count);
841 if (objs == NULL) {
847 delete[] objs;
882 Formattable objs [] = {
886 out = mf->format(objs, 1, out, pos, status);