Searched defs:distanceToPeekStart (Results 1 - 2 of 2) sorted by last modified time

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DPiecewiseLinearIndentationFunctor.java41 * If distanceToPeekStart is 0, we directly start at the peek, otherwise the
42 * first element transitions between 0 and distanceToPeekStart.
46 * | FIRST ITEM | | <- distanceToPeekStart
52 * @param distanceToPeekStart The distance to the start of the peak.
58 int distanceToPeekStart,
60 super(maxItemsInStack, peekSize, distanceToPeekStart);
56 PiecewiseLinearIndentationFunctor(int maxItemsInStack, int peekSize, int distanceToPeekStart, float linearPart) argument
H A DStackIndentationFunctor.java40 * If distanceToPeekStart is 0, we directly start at the peek, otherwise the
41 * first element transitions between 0 and distanceToPeekStart.
45 * | FIRST ITEM | | <- distanceToPeekStart
51 * @param distanceToPeekStart The distance to the start of the peak.
53 StackIndentationFunctor(int maxItemsInStack, int peekSize, int distanceToPeekStart) { argument
54 mDistanceToPeekStart = distanceToPeekStart;
71 public void setDistanceToPeekStart(int distanceToPeekStart) { argument
72 mDistanceToPeekStart = distanceToPeekStart;

Completed in 218 milliseconds