Searched refs:truncatedLength (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DStringTruncator.cpp92 unsigned truncatedLength = omitStart + shouldInsertEllipsis + (length - omitEnd); local
93 ASSERT(truncatedLength <= length);
99 return truncatedLength;
123 unsigned truncatedLength = shouldInsertEllipsis ? keepLength + 1 : keepLength; local
129 return truncatedLength;
216 unsigned truncatedLength;
225 truncatedLength = centerTruncateToBuffer(string, length, keepCount, stringBuffer, shouldInsertEllipsis);
229 truncatedLength = length;
232 float width = stringWidth(font, stringBuffer, truncatedLength, disableRoundingHacks);
270 truncatedLength
[all...]
/macosx-10.10/WTF-7600.1.24/wtf/
H A Ddtoa.cpp1247 size_t truncatedLength = length - 1;
1248 for (; truncatedLength > decimalPointPosition; --truncatedLength) {
1249 if (buffer[truncatedLength] != '0')
1254 if (truncatedLength == length - 1)
1258 if (truncatedLength == decimalPointPosition) {
1259 ASSERT(truncatedLength > 0);
1260 --truncatedLength;
1264 builder.SetPosition(truncatedLength + 1);

Completed in 181 milliseconds