OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clipTopAmount
(Results
1 - 12
of
12
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
StackViewState.java
46
public int
clipTopAmount
;
76
clipTopAmount
= svs.
clipTopAmount
;
StackScrollState.java
112
boolean visible = state.
clipTopAmount
< mClearAllTopPadding;
116
boolean visible = state.
clipTopAmount
<= 0;
170
if (oldClipTopAmount != state.
clipTopAmount
) {
171
view.setClipTopAmount(state.
clipTopAmount
);
StackScrollAlgorithm.java
161
state.
clipTopAmount
= (int) overlapAmount;
163
state.
clipTopAmount
= 0;
StackStateAnimator.java
212
boolean topInsetChanging = viewState.
clipTopAmount
!= child.getClipTopAmount();
537
int newEndValue = viewState.
clipTopAmount
;
[
all
...]
NotificationChildrenContainer.java
475
childState.
clipTopAmount
= 0;
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableOutlineView.java
64
public void setClipTopAmount(int
clipTopAmount
) {
65
super.setClipTopAmount(
clipTopAmount
);
NotificationBackgroundView.java
118
public void setClipTopAmount(int
clipTopAmount
) {
119
mClipTopAmount =
clipTopAmount
;
ExpandableView.java
216
* @param
clipTopAmount
The amount of pixels this view should be clipped from top.
218
public void setClipTopAmount(int
clipTopAmount
) {
219
mClipTopAmount =
clipTopAmount
;
291
* view,we also need to subtract the
clipTopAmount
from the top. This is needed in order to
NotificationGuts.java
421
public void setClipTopAmount(int
clipTopAmount
) {
422
mClipTopAmount =
clipTopAmount
;
ActivatableNotificationView.java
660
public void setClipTopAmount(int
clipTopAmount
) {
661
super.setClipTopAmount(
clipTopAmount
);
662
mBackgroundNormal.setClipTopAmount(
clipTopAmount
);
663
mBackgroundDimmed.setClipTopAmount(
clipTopAmount
);
[
all
...]
ExpandableNotificationRow.java
[
all
...]
NotificationContentView.java
577
public void setClipTopAmount(int
clipTopAmount
) {
578
mClipTopAmount =
clipTopAmount
;
[
all
...]
Completed in 210 milliseconds