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),
478 if (mTitleLayout != null && mCustomView == null && mTitleLayout.getVisibility() != GONE)
    [all...]
ScrollingTabContainerView.java 362 private View mCustomView;
400 mCustomView = custom;
407 if (mCustomView != null) {
408 removeView(mCustomView);
409 mCustomView = null;
  /packages/apps/Browser/src/com/android/browser/
BaseUi.java 96 private View mCustomView;
192 if (mCustomView != null) {
526 if (mCustomView != null) {
536 mCustomView = view;
546 if (mCustomView == null)
552 mCustomView = null;
560 return mCustomView != null;
572 return mCustomView == null;
773 if (mCustomView != null) {
774 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 104 milliseconds