HomeSort by relevance Sort by last modified time
    Searched full:quickresult (Results 1 - 3 of 3) 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...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
IntegralToString.java 175 String quickResult = null;
182 quickResult = "-2147483648";
184 quickResult = SMALL_NEGATIVE_VALUES[i];
185 if (quickResult == null) {
186 SMALL_NEGATIVE_VALUES[i] = quickResult =
193 quickResult = SMALL_NONNEGATIVE_VALUES[i];
194 if (quickResult == null) {
195 SMALL_NONNEGATIVE_VALUES[i] = quickResult =
200 if (quickResult != null) {
202 sb.append(quickResult);
    [all...]

Completed in 726 milliseconds