Home
last modified time | relevance | path

Searched refs:KeyguardAffordanceView (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DKeyguardAffordanceHelper.java32 import com.android.systemui.statusbar.KeyguardAffordanceView;
58 private KeyguardAffordanceView mLeftIcon;
59 private KeyguardAffordanceView mRightIcon;
244 final KeyguardAffordanceView targetView = right ? mRightIcon : mLeftIcon; in startHintAnimationPhase1()
293 final KeyguardAffordanceView targetView = right ? mRightIcon : mLeftIcon; in getAnimatorToRadius()
369 KeyguardAffordanceView targetView = right ? mRightIcon : mLeftIcon; in startFinishingCircleAnimation()
378 KeyguardAffordanceView targetView = translation > 0 ? mLeftIcon : mRightIcon; in setTranslation()
379 KeyguardAffordanceView otherView = translation > 0 ? mRightIcon : mLeftIcon; in setTranslation()
404 private void updateIconsFromTranslation(KeyguardAffordanceView targetView) { in updateIconsFromTranslation()
413 KeyguardAffordanceView otherView = targetView == mRightIcon ? mLeftIcon : mRightIcon; in updateIconsFromTranslation()
[all …]
DLockIcon.java37 import com.android.systemui.statusbar.KeyguardAffordanceView;
45 public class LockIcon extends KeyguardAffordanceView {
DKeyguardBottomAreaView.java78 import com.android.systemui.statusbar.KeyguardAffordanceView;
125 private KeyguardAffordanceView mRightAffordanceView;
126 private KeyguardAffordanceView mLeftAffordanceView;
602 public KeyguardAffordanceView getLeftView() { in getLeftView()
606 public KeyguardAffordanceView getRightView() { in getRightView()
DNotificationPanelViewController.java85 import com.android.systemui.statusbar.KeyguardAffordanceView;
3403 public KeyguardAffordanceView getLeftIcon() {
3409 public KeyguardAffordanceView getRightIcon() {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DKeyguardAffordanceView.java48 public class KeyguardAffordanceView extends ImageView { class
114 public KeyguardAffordanceView(Context context) { in KeyguardAffordanceView() method in KeyguardAffordanceView
118 public KeyguardAffordanceView(Context context, AttributeSet attrs) { in KeyguardAffordanceView() method in KeyguardAffordanceView
122 public KeyguardAffordanceView(Context context, AttributeSet attrs, int defStyleAttr) { in KeyguardAffordanceView() method in KeyguardAffordanceView
126 public KeyguardAffordanceView(Context context, AttributeSet attrs, int defStyleAttr, in KeyguardAffordanceView() method in KeyguardAffordanceView
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DNotificationPanelViewTest.java63 import com.android.systemui.statusbar.KeyguardAffordanceView;
208 when(mKeyguardBottomArea.getLeftView()).thenReturn(mock(KeyguardAffordanceView.class)); in setup()
209 when(mKeyguardBottomArea.getRightView()).thenReturn(mock(KeyguardAffordanceView.class)); in setup()