Lines Matching refs:objs
206 Formattable *objs = messageFormatter->parse(tempBuffer, pp, count);
207 //if(objs[7/*params.length*/] != NULL)
216 Formattable obj = objs[i];
245 //if (objs[i] != NULL && objs[i].getString(temp1) != params[i].getString(temp2)) {
247 errln("Parse failed on object " + objs[i].getString(temp1) + " at index : " + i);
252 delete [] objs;
704 Formattable *objs = 0;
712 //Object[] objs = mf.parse(formatted, new ParsePosition(0));
715 objs = mf->parse(formatted, pp, count);
719 if (objs == NULL)
723 if(objs[0].getType() == Formattable::kString)
724 logln((UnicodeString)" " + objs[0].getString(temp));
726 logln((UnicodeString)" " + (objs[0].getType() == Formattable::kLong ? objs[0].getLong() : objs[0].getDouble()));
727 delete[] objs;
744 //Object[] objs = mf.parse(forParsing, new ParsePosition(0));
747 Formattable *objs = mf->parse(forParsing, pp, count);
752 if (objs[0].getString(str) != "z")
753 errln("argument0: \"" + objs[0].getString(str) + "\"");
780 delete [] objs;
842 //Object[] objs = mf.parse(texts[i], pp);
844 Formattable *objs = mf->parse(texts[i], pp, count);
846 if (objs == NULL) {
852 delete[] objs;
887 Formattable objs [] = {
891 out = mf->format(objs, 1, out, pos, status);