reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/APFloat.cpp
 2622   sign = *p == '-' ? 1 : 0;
 2623   if (*p == '-' || *p == '+') {
 2623   if (*p == '-' || *p == '+') {
 2624     p++;
 2629   if (slen >= 2 && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) {
 2629   if (slen >= 2 && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) {
 2629   if (slen >= 2 && p[0] == '0' && (p[1] == 'x' || p[1] == 'X')) {
 2631     return convertFromHexadecimalString(StringRef(p + 2, slen - 2),
 2635   return convertFromDecimalString(StringRef(p, slen), rounding_mode);