reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1318 APF.toString(StrVal, 6, 0, false); 1323 assert(((StrVal[0] >= '0' && StrVal[0] <= '9') || 1323 assert(((StrVal[0] >= '0' && StrVal[0] <= '9') || 1324 ((StrVal[0] == '-' || StrVal[0] == '+') && 1324 ((StrVal[0] == '-' || StrVal[0] == '+') && 1325 (StrVal[1] >= '0' && StrVal[1] <= '9'))) && 1325 (StrVal[1] >= '0' && StrVal[1] <= '9'))) && 1328 if (APFloat(APFloat::IEEEdouble(), StrVal).convertToDouble() == Val) { 1329 Out << StrVal;