HomeSort by relevance Sort by last modified time
    Searched full:quickresult (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/lang/
RealToString.java 73 String quickResult = null;
76 quickResult = positive ? "Infinity" : "-Infinity";
78 quickResult = "NaN";
82 quickResult = positive ? "0.0" : "-0.0";
85 quickResult = positive ? "4.9E-324" : "-4.9E-324";
88 if (quickResult != null) {
89 return resultOrSideEffect(sb, quickResult);
140 String quickResult = null;
143 quickResult = positive ? "Infinity" : "-Infinity";
145 quickResult = "NaN"
    [all...]
IntegralToString.java 182 String quickResult = null;
189 quickResult = "-2147483648";
191 quickResult = SMALL_NEGATIVE_VALUES[i];
192 if (quickResult == null) {
193 SMALL_NEGATIVE_VALUES[i] = quickResult =
200 quickResult = SMALL_NONNEGATIVE_VALUES[i];
201 if (quickResult == null) {
202 SMALL_NONNEGATIVE_VALUES[i] = quickResult =
207 if (quickResult != null) {
209 sb.append0(quickResult);
    [all...]

Completed in 180 milliseconds