Home
last modified time | relevance | path

Searched refs:clipStart (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithm.java165 float clipStart = 0; in updateClipping() local
172 clipStart = Math.max(drawStart, clipStart); in updateClipping()
181 && newYTranslation < clipStart) { in updateClipping()
183 float overlapAmount = clipStart - newYTranslation; in updateClipping()
194 clipStart = Math.max(clipStart, isHeadsUp ? newYTranslation : newNotificationEnd); in updateClipping()
DNotificationStackScrollLayout.java1239 Float clipStart = (float) mTopPadding
1242 Float clipEnd = clipStart + mCornerRadius;
1251 boolean clip = clipStart > start && clipStart < end
1254 child.setDistanceToTopRoundness(clip ? Math.max(start - clipStart, 0)