Lines Matching defs:strValue
2139 SmallString<128> strValue;
2140 apValue.toString(strValue, /*FormatPrecision=*/6, /*FormatMaxPadding=*/0,
2146 assert(((strValue[0] >= '0' && strValue[0] <= '9') ||
2147 ((strValue[0] == '-' || strValue[0] == '+') &&
2148 (strValue[1] >= '0' && strValue[1] <= '9'))) &&
2153 if (APFloat(apValue.getSemantics(), strValue).bitwiseIsEqual(apValue)) {
2154 os << strValue;
2160 strValue.clear();
2161 apValue.toString(strValue);
2164 if (strValue.str().contains('.')) {
2165 os << strValue;