Searched defs:clipBottom (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFEConvolveMatrix.cpp240 ALWAYS_INLINE void FEConvolveMatrix::fastSetInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom) argument
253 for (int y = clipBottom + 1; y > 0; --y) {
373 ALWAYS_INLINE void FEConvolveMatrix::setInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom) argument
378 fastSetInteriorPixels<true>(paintingData, clipRight, clipBottom);
380 fastSetInteriorPixels<false>(paintingData, clipRight, clipBottom);
428 int clipBottom = paintSize.height() - m_kernelSize.height(); local
430 if (clipRight >= 0 && clipBottom >= 0) {
431 setInteriorPixels(paintingData, clipRight, clipBottom);
434 clipBottom += m_targetOffset.y() + 1;
437 if (clipBottom < paintSiz
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.h468 Length clipBottom() const { return visual->clip.bottom(); } function in class:WebCore::RenderStyle

Completed in 262 milliseconds