Searched refs:hostView (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewGroupOverlay.java35 ViewGroupOverlay(Context context, View hostView) { argument
36 super(context, hostView);
H A DViewOverlay.java48 ViewOverlay(Context context, View hostView) { argument
49 mOverlayViewGroup = new OverlayViewGroup(context, hostView);
129 OverlayViewGroup(Context context, View hostView) { argument
131 mHostView = hostView;
133 mRight = hostView.getWidth();
134 mBottom = hostView.getHeight();
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardViewStateManager.java49 public KeyguardViewStateManager(KeyguardHostView hostView) { argument
50 mKeyguardHostView = hostView;
H A DKeyguardHostView.java835 // weak reference to the hostView to avoid keeping a live reference
841 MyOnClickHandler(KeyguardHostView hostView) { argument
842 mThis = new WeakReference<KeyguardHostView>(hostView);
849 KeyguardHostView hostView = mThis.get();
850 if (hostView == null) {
854 hostView.setOnDismissAction(new OnDismissAction() {
876 if (hostView.mViewStateManager.isChallengeShowing()) {
877 hostView.mViewStateManager.showBouncer(true);
879 hostView.mCallback.dismiss(false);

Completed in 186 milliseconds