HomeSort by relevance Sort by last modified time
    Searched refs:tmpDigits (Results 1 - 4 of 4) sorted by null

  /external/icu/android_icu4j/src/main/java/android/icu/text/
DecimalFormatSymbols.java 314 char[] tmpDigits = new char[10];
332 // If it is 1 UTF-16 code unit long, set it in tmpDigits.
333 if (cc == 1 && tmpDigits != null) {
334 tmpDigits[i] = (char) cp;
336 tmpDigits = null;
346 // codePointZero and tmpDigits are going to be invalid.
348 tmpDigits = null;
355 if (tmpDigits == null) {
360 this.zeroDigit = tmpDigits[0];
361 this.digits = tmpDigits;
    [all...]
SimpleDateFormat.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DecimalFormatSymbols.java 333 char[] tmpDigits = new char[10];
351 // If it is 1 UTF-16 code unit long, set it in tmpDigits.
352 if (cc == 1 && tmpDigits != null) {
353 tmpDigits[i] = (char) cp;
355 tmpDigits = null;
365 // codePointZero and tmpDigits are going to be invalid.
367 tmpDigits = null;
374 if (tmpDigits == null) {
379 this.zeroDigit = tmpDigits[0];
380 this.digits = tmpDigits;
    [all...]
SimpleDateFormat.java     [all...]

Completed in 156 milliseconds