Lines Matching refs:Formattable
20 static const char * formattableTypeName(Formattable::Type t) in formattableTypeName()
23 case Formattable::kDate: return "kDate"; in formattableTypeName()
24 case Formattable::kDouble: return "kDouble"; in formattableTypeName()
25 case Formattable::kLong: return "kLong"; in formattableTypeName()
26 case Formattable::kString: return "kString"; in formattableTypeName()
27 case Formattable::kArray: return "kArray"; in formattableTypeName()
28 case Formattable::kInt64: return "kInt64"; in formattableTypeName()
285 Formattable number[DEPTH]; in tryIt()
309 if (number[i].getType() == Formattable::kLong) in tryIt()
311 else if (number[i].getType() == Formattable::kInt64) in tryIt()
313 else if (number[i].getType() != Formattable::kDouble) in tryIt()
365 Formattable number(aNumber); in tryIt()
381 if (number.getType() != Formattable::kLong) in tryIt()