totalLength      2390 Source/core/dom/Element.cpp     unsigned totalLength = 0;
totalLength      2401 Source/core/dom/Element.cpp         if (length > std::numeric_limits<unsigned>::max() - totalLength)
totalLength      2403 Source/core/dom/Element.cpp         totalLength += length;
totalLength      2415 Source/core/dom/Element.cpp     content.reserveCapacity(totalLength);
totalLength      2422 Source/core/dom/Element.cpp     ASSERT(content.length() == totalLength);
totalLength        82 Source/core/editing/MarkupAccumulator.h     static size_t totalLength(const Vector<String>&);
totalLength       203 Source/core/editing/markup.cpp     result.reserveCapacity(totalLength(m_reversedPrecedingMarkup) + length());
totalLength       318 Source/core/rendering/RenderScrollbar.cpp         int totalLength = startLength + endLength;
totalLength       319 Source/core/rendering/RenderScrollbar.cpp         return IntRect(x() + startLength, y(), width() - totalLength, height());
totalLength       326 Source/core/rendering/RenderScrollbar.cpp     int totalLength = startLength + endLength;
totalLength       328 Source/core/rendering/RenderScrollbar.cpp     return IntRect(x(), y() + startLength, width(), height() - totalLength);
totalLength       182 Source/core/rendering/svg/SVGTextLayoutEngine.cpp     float totalLength = 0;
totalLength       199 Source/core/rendering/svg/SVGTextLayoutEngine.cpp         totalLength += length;
totalLength       222 Source/core/rendering/svg/SVGTextLayoutEngine.cpp         m_textPathSpacing = (desiredTextLength - totalLength) / totalCharacters;
totalLength       224 Source/core/rendering/svg/SVGTextLayoutEngine.cpp         m_textPathScaling = desiredTextLength / totalLength;
totalLength        71 Source/core/svg/SVGPathElement.cpp     float totalLength = 0;
totalLength        72 Source/core/svg/SVGPathElement.cpp     getTotalLengthOfSVGPathByteStream(pathByteStream(), totalLength);
totalLength        73 Source/core/svg/SVGPathElement.cpp     return totalLength;
totalLength        36 Source/core/svg/SVGPathTraversalStateBuilder.h     float totalLength();
totalLength       202 Source/core/svg/SVGPathUtilities.cpp bool getTotalLengthOfSVGPathByteStream(const SVGPathByteStream* stream, float& totalLength)
totalLength       214 Source/core/svg/SVGPathUtilities.cpp     totalLength = builder->totalLength();
totalLength        51 Source/core/svg/SVGPathUtilities.h bool getTotalLengthOfSVGPathByteStream(const SVGPathByteStream*, float& totalLength);
totalLength       124 Source/platform/graphics/PathTraversalState.cpp     float totalLength = 0;
totalLength       134 Source/platform/graphics/PathTraversalState.cpp             totalLength += length;
totalLength       138 Source/platform/graphics/PathTraversalState.cpp                 if (traversalState.m_totalLength + totalLength > traversalState.m_desiredLength)
totalLength       139 Source/platform/graphics/PathTraversalState.cpp                     return totalLength;
totalLength       146 Source/platform/graphics/PathTraversalState.cpp     return totalLength;