Searched refs:hostView (Results 1 - 6 of 6) 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;
134 mRight = hostView.getWidth();
135 mBottom = hostView.getHeight();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DStackScrollState.java46 public StackScrollState(ViewGroup hostView) { argument
47 mHostView = hostView;
49 mClearAllTopPadding = hostView.getContext().getResources().getDimensionPixelSize(
93 "to the hostView");
H A DStackScrollAlgorithm.java319 ViewGroup hostView = resultState.getHostView();
320 int childCount = hostView.getChildCount();
324 ExpandableView v = (ExpandableView) hostView.getChildAt(i);
745 ViewGroup hostView = currentState.getHostView();
746 updateFirstChildHeightWhileExpanding(hostView);
749 private void updateFirstChildHeightWhileExpanding(ViewGroup hostView) { argument
750 mFirstChildWhileExpanding = (ExpandableView) findFirstVisibleChild(hostView);
819 public void notifyChildrenChanged(final ViewGroup hostView) { argument
821 hostView.post(new Runnable() {
824 updateFirstChildHeightWhileExpanding(hostView);
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardHostView.java504 // weak reference to the hostView to avoid keeping a live reference
510 MyOnClickHandler(KeyguardHostView hostView) { argument
511 mKeyguardHostView = new WeakReference<KeyguardHostView>(hostView);
518 KeyguardHostView hostView = mKeyguardHostView.get();
519 if (hostView == null) {
523 hostView.setOnDismissAction(new OnDismissAction() {
545 if (hostView.mViewStateManager.isChallengeShowing()) {
546 hostView.mViewStateManager.showBouncer(true);
548 hostView.dismiss();
H A DKeyguardViewStateManager.java65 public KeyguardViewStateManager(KeyguardHostView hostView) { argument
66 mKeyguardHostView = hostView;

Completed in 9081 milliseconds