HomeSort by relevance Sort by last modified time
    Searched refs:mCustomView (Results 1 - 7 of 7) sorted by null

  /frameworks/base/core/java/com/android/internal/view/
StandaloneActionMode.java 37 private WeakReference<View> mCustomView;
77 mCustomView = view != null ? new WeakReference<View>(view) : null;
113 return mCustomView != null ? mCustomView.get() : null;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarDisplayOptions.java 35 private View mCustomView;
50 mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
53 bar.setCustomView(mCustomView,
94 ActionBar.LayoutParams lp = (ActionBar.LayoutParams) mCustomView.getLayoutParams();
108 bar.setCustomView(mCustomView, lp);
  /frameworks/base/core/java/android/webkit/
FindActionModeCallback.java 36 private View mCustomView;
47 mCustomView = LayoutInflater.from(context).inflate(
49 mEditText = (EditText) mCustomView.findViewById(
56 mMatches = (TextView) mCustomView.findViewById(
189 mode.setCustomView(mCustomView);
261 View parent = (View) mCustomView.getParent();
263 : mCustomView.getMeasuredHeight();
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java 52 private View mCustomView;
143 if (mCustomView != null) {
144 removeView(mCustomView);
146 mCustomView = view;
277 mCustomView = null;
353 if (mTitleLayout != null && mCustomView == null) {
357 if (mCustomView != null) {
358 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
367 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
462 if (mTitleLayout != null && mCustomView == null)
    [all...]
ScrollingTabContainerView.java 362 private View mCustomView;
396 mCustomView = custom;
403 if (mCustomView != null) {
404 removeView(mCustomView);
405 mCustomView = null;
  /packages/apps/Browser/src/com/android/browser/
BaseUi.java 95 private View mCustomView;
186 if (mCustomView != null) {
516 if (mCustomView != null) {
526 mCustomView = view;
534 if (mCustomView == null)
540 mCustomView = null;
548 return mCustomView != null;
560 return mCustomView == null;
760 if (mCustomView != null) {
761 mCustomView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE)
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ActionBarImpl.java 645 private WeakReference<View> mCustomView;
717 mCustomView = new WeakReference<View>(view);
752 return mCustomView != null ? mCustomView.get() : null;
801 private View mCustomView;
826 return mCustomView;
831 mCustomView = view;

Completed in 681 milliseconds