Lines Matching full:infinity
243 // 9. If x = +infinity, then in ToExponential()
244 // a. Return the concatenation of the Strings s and "Infinity". in ToExponential()
247 return GetTaggedString(thread, "-Infinity"); in ToExponential()
249 return GetTaggedString(thread, "Infinity"); in ToExponential()
375 // 9. If x = +infinity, then in ToPrecision()
376 // a. Return the String that is the concatenation of s and "Infinity". in ToPrecision()
379 return GetTaggedString(thread, "-Infinity"); in ToPrecision()
381 return GetTaggedString(thread, "Infinity"); in ToPrecision()
430 // If x = +infinity, then in ToString()
431 // Return the String that is the concatenation of s and "Infinity". in ToString()
434 return GetTaggedString(thread, "-Infinity"); in ToString()
436 return GetTaggedString(thread, "Infinity"); in ToString()