Home
last modified time | relevance | path

Searched refs:clipTop (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DExpandableViewState.java321 boolean clipTop) { in startClipAnimation() argument
323 clipTop ? TAG_START_TOP_INSET : TAG_START_BOTTOM_INSET); in startClipAnimation()
325 clipTop ? TAG_END_TOP_INSET : TAG_END_BOTTOM_INSET); in startClipAnimation()
326 int newEndValue = clipTop ? this.clipTopAmount : this.clipBottomAmount; in startClipAnimation()
331 clipTop ? TAG_ANIMATOR_TOP_INSET : TAG_ANIMATOR_BOTTOM_INSET); in startClipAnimation()
333 if (clipTop && !filter.animateTopInset || !clipTop) { in startClipAnimation()
342 child.setTag(clipTop ? TAG_START_TOP_INSET : TAG_START_BOTTOM_INSET, newStartValue); in startClipAnimation()
343 child.setTag(clipTop ? TAG_END_TOP_INSET : TAG_END_BOTTOM_INSET, newEndValue); in startClipAnimation()
348 if (clipTop) { in startClipAnimation()
358 clipTop ? child.getClipTopAmount() : child.getClipBottomAmount(), newEndValue); in startClipAnimation()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/drawable/
DSquigglyProgress.kt192 val clipTop = lineAmplitude + strokeWidth in <lambda>() constant
198 canvas.clipRect(0f, -1f * clipTop, totalProgressPx, clipTop) in <lambda>()
206 canvas.clipRect(totalProgressPx, -1f * clipTop, totalWidth, clipTop) in <lambda>()
/frameworks/base/libs/hwui/private/hwui/
DDrawGlInfo.h32 int clipTop; member
/frameworks/base/graphics/java/android/graphics/
DRenderNode.java282 int clipLeft, int clipTop, int clipRight, int clipBottom) { in positionChanged() argument
307 int clipLeft, int clipTop, int clipRight, int clipBottom) { in callPositionChanged2() argument
311 clipTop, clipRight, clipBottom); in callPositionChanged2()
404 int clipLeft, int clipTop, int clipRight, int clipBottom) { in positionChanged() argument
406 pul.positionChanged(frameNumber, left, top, right, bottom, clipLeft, clipTop, in positionChanged()
/frameworks/base/native/webview/plat_support/
Ddraw_gl_functor.cpp62 aw_info.clip_top = gl_info->clipTop; in operator ()()
Ddraw_functor.cpp95 .clip_top = draw_gl_params.clipTop, in draw_gl()
/frameworks/base/libs/hwui/jni/pdf/
DPdfEditor.cpp107 jlong transformPtr, jint clipLeft, jint clipTop, jint clipRight, jint clipBottom) { in nativeSetTransformAndClip() argument
154 FS_RECTF clip = {(float) clipLeft, (float) clipTop, (float) clipRight, (float) clipBottom}; in nativeSetTransformAndClip()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/
DKeyguardRootViewBinder.kt196 viewModel.topClippingBounds.collect { clipTop -> in <lambda>() method
197 if (clipTop == null) { in <lambda>()
201 top = clipTop in <lambda>()
/frameworks/base/libs/hwui/pipeline/skia/
DVkInteropFunctorDrawable.cpp137 info.clipTop = clipBounds.fTop; in onDraw()
DGLFunctorDrawable.cpp133 info.clipTop = clipBounds.fTop; in onDraw()
/frameworks/base/graphics/java/android/graphics/pdf/
DPdfEditor.java365 long transformPtr, int clipLeft, int clipTop, int clipRight, int clipBottom); in nativeSetTransformAndClip() argument
/frameworks/base/core/java/android/view/
DSurfaceView.java1600 int clipLeft, int clipTop, int clipRight, int clipBottom) { in positionChanged() argument
1608 left, top, right, bottom, clipLeft, clipTop, clipRight, clipBottom, in positionChanged()
1624 mRTLastSetCrop.set((int) (clipLeft / postScaleX), (int) (clipTop / postScaleY), in positionChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelf.java429 int clipTop = updateNotificationClipHeight(child, notificationClipEnd, notGoneIndex); in updateAppearance() local
430 clipTopAmount = Math.max(clipTop, clipTopAmount); in updateAppearance()
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DQuickSettingsControllerImpl.java1268 int clipTop = mEnableClipping in applyClippingImmediately() local
1276 clipTop, in applyClippingImmediately()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRow.java2492 float clipTop = Math.min(params.getTop() - notificationStackTop, parentTranslationY);
2493 int minimumHeightForClipping = (int) (clipBottom - clipTop);
/frameworks/base/core/java/android/widget/
DTextView.java9306 float clipTop = (scrollY == 0) ? 0 : extendedPaddingTop + scrollY; in onDraw() local
9315 clipTop += Math.min(0, mShadowDy - mShadowRadius); in onDraw()
9319 canvas.clipRect(clipLeft, clipTop, clipRight, clipBottom); in onDraw()