Home
last modified time | relevance | path

Searched refs:lettersSize (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderListMarker.cpp59 const int lettersSize = 15; in toRoman() local
60 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() local
97 CharacterType letters[lettersSize]; in toAlphabeticOrNumeric()
[all …]