Home | History | Annotate | Download | only in intltest

Lines Matching refs:Formattable

20 static const char * formattableTypeName(Formattable::Type t)
23 case Formattable::kDate: return "kDate";
24 case Formattable::kDouble: return "kDouble";
25 case Formattable::kLong: return "kLong";
26 case Formattable::kString: return "kString";
27 case Formattable::kArray: return "kArray";
28 case Formattable::kInt64: return "kInt64";
285 Formattable number[DEPTH];
309 if (number[i].getType() == Formattable::kLong)
311 else if (number[i].getType() == Formattable::kInt64)
313 else if (number[i].getType() != Formattable::kDouble)
316 + " returned non-numeric Formattable, type " + UnicodeString(formattableTypeName(number[i].getType()))
365 Formattable number(aNumber);
381 if (number.getType() != Formattable::kLong)
384 + " returned non-long Formattable, type " + UnicodeString(formattableTypeName(number.getType()))