Searched refs:lettersSize (Results 1 – 1 of 1) sorted by relevance
59 const int lettersSize = 15; in toRoman() local60 LChar letters[lettersSize]; in toRoman()71 letters[lettersSize - ++length] = digits[d]; in toRoman()73 letters[lettersSize - ++length] = digits[d + 1]; in toRoman()75 letters[lettersSize - ++length] = digits[d + 2]; in toRoman()77 letters[lettersSize - ++length] = digits[d]; in toRoman()82 ASSERT(length <= lettersSize); in toRoman()83 return String(&letters[lettersSize - length], length); in toRoman()95 …const int lettersSize = sizeof(numberType) * 8 + 1; // Binary is the worst case; requires one char… in toAlphabeticOrNumeric() local97 CharacterType letters[lettersSize]; in toAlphabeticOrNumeric()[all …]