HomeSort by relevance Sort by last modified time
    Searched defs:clipBottom (Results 1 - 6 of 6) sorted by null

  /frameworks/base/include/private/hwui/
DrawGlInfo.h 32 int clipBottom;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEConvolveMatrix.h 94 ALWAYS_INLINE void fastSetInteriorPixels(PaintingData&, int clipRight, int clipBottom, int yStart, int yEnd);
102 ALWAYS_INLINE void setInteriorPixels(PaintingData&, int clipRight, int clipBottom, int yStart, int yEnd);
114 int clipBottom;
FEConvolveMatrix.cpp 262 ALWAYS_INLINE void FEConvolveMatrix::fastSetInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom, int yStart, int yEnd)
274 // Skip the first '(clipBottom - yEnd)' lines
275 pixel += (clipBottom - yEnd) * (xIncrease + (clipRight + 1) * 4);
276 int startKernelPixel = (clipBottom - yEnd) * (xIncrease + (clipRight + 1) * 4);
402 ALWAYS_INLINE void FEConvolveMatrix::setInteriorPixels(PaintingData& paintingData, int clipRight, int clipBottom, int yStart, int yEnd)
407 fastSetInteriorPixels<true>(paintingData, clipRight, clipBottom, yStart, yEnd);
409 fastSetInteriorPixels<false>(paintingData, clipRight, clipBottom, yStart, yEnd);
424 param->filter->setInteriorPixels(*param->paintingData, param->clipRight, param->clipBottom, param->yStart, param->yEnd);
457 int clipBottom = paintSize.height() - m_kernelSize.height();
459 if (clipRight >= 0 && clipBottom >= 0)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackView.java 359 int clipBottom = 0;
380 clipBottom = (int) Math.floor(tv.getMeasuredHeight() - mTmpCoord[1]
384 tv.getViewBounds().setClipBottom(clipBottom);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 557 const Length& clipBottom() const { return visual->clip.bottom(); }
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java     [all...]

Completed in 108 milliseconds