Lines Matching refs:Formattable
22 static const char * formattableTypeName(Formattable::Type t) in formattableTypeName()
25 case Formattable::kDate: return "kDate"; in formattableTypeName()
26 case Formattable::kDouble: return "kDouble"; in formattableTypeName()
27 case Formattable::kLong: return "kLong"; in formattableTypeName()
28 case Formattable::kString: return "kString"; in formattableTypeName()
29 case Formattable::kArray: return "kArray"; in formattableTypeName()
30 case Formattable::kInt64: return "kInt64"; in formattableTypeName()
287 Formattable number[DEPTH]; in tryIt()
311 if (number[i].getType() == Formattable::kLong) in tryIt()
313 else if (number[i].getType() == Formattable::kInt64) in tryIt()
315 else if (number[i].getType() != Formattable::kDouble) in tryIt()
367 Formattable number(aNumber); in tryIt()
383 if (number.getType() != Formattable::kLong) in tryIt()