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;
88 mCustomView = view != null ? new WeakReference<View>(view) : null;
124 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 38 private View mCustomView;
50 mCustomView = LayoutInflater.from(context).inflate(
52 mEditText = (EditText) mCustomView.findViewById(
57 mMatches = (TextView) mCustomView.findViewById(
194 mode.setCustomView(mCustomView);
268 View view = (View) mCustomView.getParent();
270 view = mCustomView;
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java 52 private View mCustomView;
144 if (mCustomView != null) {
145 removeView(mCustomView);
147 mCustomView = view;
281 mCustomView = null;
357 if (mTitleLayout != null && mCustomView == null) {
372 if (mCustomView != null) {
373 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
382 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
475 if (mTitleLayout != null && mCustomView == null && mTitleLayout.getVisibility() != GONE)
    [all...]
ScrollingTabContainerView.java 359 private View mCustomView;
397 mCustomView = custom;
404 if (mCustomView != null) {
405 removeView(mCustomView);
406 mCustomView = null;
  /packages/apps/Browser/src/com/android/browser/
BaseUi.java 96 private View mCustomView;
191 if (mCustomView != null) {
525 if (mCustomView != null) {
535 mCustomView = view;
545 if (mCustomView == null)
551 mCustomView = null;
559 return mCustomView != null;
571 return mCustomView == null;
772 if (mCustomView != null) {
773 mCustomView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE)
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ActionBarImpl.java 810 private WeakReference<View> mCustomView;
880 mCustomView = new WeakReference<View>(view);
926 return mCustomView != null ? mCustomView.get() : null;
975 private View mCustomView;
    [all...]

Completed in 1804 milliseconds