Searched refs:lettersSize (Results 1 – 1 of 1) sorted by relevance
56 const int lettersSize = 15; in toRoman() local57 UChar letters[lettersSize]; in toRoman()68 letters[lettersSize - ++length] = digits[d]; in toRoman()70 letters[lettersSize - ++length] = digits[d + 1]; in toRoman()72 letters[lettersSize - ++length] = digits[d + 2]; in toRoman()74 letters[lettersSize - ++length] = digits[d]; in toRoman()79 ASSERT(length <= lettersSize); in toRoman()80 return String(&letters[lettersSize - length], length); in toRoman()87 …const int lettersSize = sizeof(number) * 8 + 1; // Binary is the worst case; requires one characte… in toAlphabeticOrNumeric() local89 UChar letters[lettersSize]; in toAlphabeticOrNumeric()[all …]