Searched refs:mCustomView (Results 1 - 12 of 12) 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/widget/
H A DActionBarContextView.java47 private View mCustomView; field in class:ActionBarContextView
142 if (mCustomView != null) {
143 removeView(mCustomView);
145 mCustomView = view;
260 mCustomView = null;
335 if (mTitleLayout != null && mCustomView == null) {
351 if (mCustomView != null) {
352 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
361 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
398 if (mTitleLayout != null && mCustomView
[all...]
H A DToolbarWidgetWrapper.java71 private View mCustomView; field in class:ToolbarWidgetWrapper
431 if ((changed & ActionBar.DISPLAY_SHOW_CUSTOM) != 0 && mCustomView != null) {
433 mToolbar.addView(mCustomView);
435 mToolbar.removeView(mCustomView);
561 if (mCustomView != null && (mDisplayOpts & ActionBar.DISPLAY_SHOW_CUSTOM) != 0) {
562 mToolbar.removeView(mCustomView);
564 mCustomView = view;
566 mToolbar.addView(mCustomView);
572 return mCustomView;
H A DScrollingTabContainerView.java367 private View mCustomView; field in class:ScrollingTabContainerView.TabView
420 mCustomView = custom;
427 if (mCustomView != null) {
428 removeView(mCustomView);
429 mCustomView = null;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActionBarContextView.java46 private View mCustomView; field in class:ActionBarContextView
99 if (mCustomView != null) {
100 removeView(mCustomView);
102 mCustomView = view;
198 mCustomView = null;
273 if (mTitleLayout != null && mCustomView == null) {
288 if (mCustomView != null) {
289 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams();
298 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
334 if (mTitleLayout != null && mCustomView
[all...]
H A DToolbarWidgetWrapper.java71 private View mCustomView; field in class:ToolbarWidgetWrapper
436 if ((changed & ActionBar.DISPLAY_SHOW_CUSTOM) != 0 && mCustomView != null) {
438 mToolbar.addView(mCustomView);
440 mToolbar.removeView(mCustomView);
566 if (mCustomView != null && (mDisplayOpts & ActionBar.DISPLAY_SHOW_CUSTOM) != 0) {
567 mToolbar.removeView(mCustomView);
569 mCustomView = view;
571 mToolbar.addView(mCustomView);
577 return mCustomView;
H A DScrollingTabContainerView.java387 private View mCustomView; field in class:ScrollingTabContainerView.TabView
458 mCustomView = custom;
465 if (mCustomView != null) {
466 removeView(mCustomView);
467 mCustomView = null;
/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.java40 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/app/
H A DWindowDecorActionBar.java961 private WeakReference<View> mCustomView; field in class:WindowDecorActionBar.ActionModeImpl
1042 mCustomView = new WeakReference<View>(view);
1088 return mCustomView != null ? mCustomView.get() : null;
1137 private View mCustomView; field in class:WindowDecorActionBar.TabImpl
1162 return mCustomView;
1167 mCustomView = view;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DWindowDecorActionBar.java935 private WeakReference<View> mCustomView; field in class:WindowDecorActionBar.ActionModeImpl
1015 mCustomView = new WeakReference<View>(view);
1061 return mCustomView != null ? mCustomView.get() : null;
1110 private View mCustomView; field in class:WindowDecorActionBar.TabImpl
1135 return mCustomView;
1140 mCustomView = view;
/frameworks/support/design/src/android/support/design/widget/
H A DTabLayout.java904 private View mCustomView; field in class:TabLayout.Tab
941 return mCustomView;
959 mCustomView = view;
1137 private View mCustomView; field in class:TabLayout.TabView
1210 mCustomView = custom;
1223 if (mCustomView != null) {
1224 removeView(mCustomView);
1225 mCustomView = null;
1231 if (mCustomView == null) {

Completed in 255 milliseconds