Lines Matching full:infinity
227 // 9. If x = +infinity, then in ToExponential()
228 // a. Return the concatenation of the Strings s and "Infinity". in ToExponential()
231 return GetTaggedString(thread, "-Infinity"); in ToExponential()
233 return GetTaggedString(thread, "Infinity"); in ToExponential()
360 // 9. If x = +infinity, then in ToPrecision()
361 // a. Return the String that is the concatenation of s and "Infinity". in ToPrecision()
364 return GetTaggedString(thread, "-Infinity"); in ToPrecision()
366 return GetTaggedString(thread, "Infinity"); in ToPrecision()
415 // If x = +infinity, then in ToString()
416 // Return the String that is the concatenation of s and "Infinity". in ToString()
419 return GetTaggedString(thread, "-Infinity"); in ToString()
421 return GetTaggedString(thread, "Infinity"); in ToString()