Home | History | Annotate | Download | only in VMCore

Lines Matching refs:StrVal

727         SmallString<128> StrVal;
728 raw_svector_ostream(StrVal) << Val;
734 if ((StrVal[0] >= '0' && StrVal[0] <= '9') ||
735 ((StrVal[0] == '-' || StrVal[0] == '+') &&
736 (StrVal[1] >= '0' && StrVal[1] <= '9'))) {
738 if (APFloat(APFloat::IEEEdouble, StrVal).convertToDouble() == Val) {
739 Out << StrVal.str();