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

References

lib/Support/APFloat.cpp
  238   if (p == end || ((*p == '-' || *p == '+') && (p + 1) == end)) {
  238   if (p == end || ((*p == '-' || *p == '+') && (p + 1) == end)) {
  238   if (p == end || ((*p == '-' || *p == '+') && (p + 1) == end)) {
  238   if (p == end || ((*p == '-' || *p == '+') && (p + 1) == end)) {
  242   isNegative = (*p == '-');
  243   if (*p == '-' || *p == '+') {
  243   if (*p == '-' || *p == '+') {
  244     p++;
  245     assert(p != end && "Exponent has no digits");
  248   absExponent = decDigitValue(*p++);
  251   for (; p != end; ++p) {
  251   for (; p != end; ++p) {
  254     value = decDigitValue(*p);
  260       p = end;  /* outwit assert below */
  266   assert(p == end && "Invalid exponent in exponent");