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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.cpp391 LayoutUnit paintEnd = isHorizontal() ? paintInfo.rect.maxX() : paintInfo.rect.maxY(); local
402 if (logicalStart >= paintEnd || logicalStart + logicalExtent <= paintStart)
646 unsigned paintEnd = std::min(end() + 1, underline.endOffset); // end() points at the last char, not past it. local
648 paintEnd = std::min(paintEnd, static_cast<unsigned>(m_start + m_truncation));
649 return paintEnd;
1123 unsigned paintEnd = underlinePaintEnd(underline); local
1129 float width = (paintStart == static_cast<unsigned>(m_start) && paintEnd == static_cast<unsigned>(end()) + 1) ? m_logicalWidth :
1130 renderer().width(paintStart, paintEnd - paintStart, textPos() + start, isLeftToRightDirection() ? LTR : RTL, isFirstLineStyle());
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.cpp1879 double paintEnd = currentTime(); local
1880 double pixelsPerSec = (rect.width * rect.height) / (paintEnd - paintStart);
1881 Platform::current()->histogramCustomCounts("Renderer4.SoftwarePaintDurationMS", (paintEnd - paintStart) * 1000, 0, 120, 30);

Completed in 2499 milliseconds