Searched defs:mCustomView (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java43 private View mCustomView; field in class:FindActionModeCallback
55 mCustomView = LayoutInflater.from(context).inflate(
57 mEditText = (EditText) mCustomView.findViewById(
62 mMatches = (TextView) mCustomView.findViewById(
207 mode.setCustomView(mCustomView);
282 View view = (View) mCustomView.getParent();
284 view = mCustomView;
/frameworks/base/core/java/com/android/internal/view/
H A DStandaloneActionMode.java37 private WeakReference<View> mCustomView; field in class:StandaloneActionMode
89 mCustomView = view != null ? new WeakReference<View>(view) : null;
125 return mCustomView != null ? mCustomView.get() : null;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DStandaloneActionMode.java41 private WeakReference<View> mCustomView; field in class:StandaloneActionMode
92 mCustomView = view != null ? new WeakReference<View>(view) : null;
128 return mCustomView != null ? mCustomView.get() : null;
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContextView.java54 private View mCustomView; field in class:ActionBarContextView
157 if (mCustomView != null) {
158 removeView(mCustomView);
160 mCustomView = view;
294 mCustomView = null;
370 if (mTitleLayout != null && mCustomView == null) {
385 if (mCustomView != null) {
386 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
395 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
491 if (mTitleLayout != null && mCustomView
[all...]
H A DScrollingTabContainerView.java366 private View mCustomView; field in class:ScrollingTabContainerView.TabView
427 mCustomView = custom;
434 if (mCustomView != null) {
435 removeView(mCustomView);
436 mCustomView = null;
H A DToolbarWidgetWrapper.java70 private View mCustomView; field in class:ToolbarWidgetWrapper
430 if ((changed & ActionBar.DISPLAY_SHOW_CUSTOM) != 0 && mCustomView != null) {
432 mToolbar.addView(mCustomView);
434 mToolbar.removeView(mCustomView);
560 if (mCustomView != null && (mDisplayOpts & ActionBar.DISPLAY_SHOW_CUSTOM) != 0) {
561 mToolbar.removeView(mCustomView);
563 mCustomView = view;
565 mToolbar.addView(mCustomView);
571 return mCustomView;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarContextView.java52 private View mCustomView; field in class:ActionBarContextView
150 if (mCustomView != null) {
151 removeView(mCustomView);
153 mCustomView = view;
287 mCustomView = null;
363 if (mTitleLayout != null && mCustomView == null) {
378 if (mCustomView != null) {
379 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
388 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
485 if (mTitleLayout != null && mCustomView
[all...]
H A DScrollingTabContainerView.java379 private View mCustomView; field in class:ScrollingTabContainerView.TabView
450 mCustomView = custom;
457 if (mCustomView != null) {
458 removeView(mCustomView);
459 mCustomView = null;
H A DToolbarWidgetWrapper.java66 private View mCustomView; field in class:ToolbarWidgetWrapper
457 if ((changed & ActionBar.DISPLAY_SHOW_CUSTOM) != 0 && mCustomView != null) {
459 mToolbar.addView(mCustomView);
461 mToolbar.removeView(mCustomView);
587 if (mCustomView != null && (mDisplayOpts & ActionBar.DISPLAY_SHOW_CUSTOM) != 0) {
588 mToolbar.removeView(mCustomView);
590 mCustomView = view;
592 mToolbar.addView(mCustomView);
598 return mCustomView;
/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java943 private WeakReference<View> mCustomView; field in class:WindowDecorActionBar.ActionModeImpl
1023 mCustomView = new WeakReference<View>(view);
1069 return mCustomView != null ? mCustomView.get() : null;
1118 private View mCustomView; field in class:WindowDecorActionBar.TabImpl
1143 return mCustomView;
1148 mCustomView = view;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DWindowDecorActionBar.java951 private WeakReference<View> mCustomView; field in class:WindowDecorActionBar.ActionModeImpl
1024 mCustomView = new WeakReference<View>(view);
1070 return mCustomView != null ? mCustomView.get() : null;
1119 private View mCustomView; field in class:WindowDecorActionBar.TabImpl
1144 return mCustomView;
1149 mCustomView = view;

Completed in 199 milliseconds