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

References

lib/Support/APFloat.cpp
 2323   StringRef::iterator p = skipLeadingZeroesAndAnyDot(begin, end, &dot);
 2330       assert(dot == end && "String contains multiple dots");
 2331       dot = p++;
 2356   assert((dot == end || p - begin != 1) && "Significand has no digits");
 2363     if (dot == end)
 2364       dot = p;
 2368     expAdjustment = static_cast<int>(dot - firstSignificantDigit);