/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
D | ActionBarContextView.java | 46 private View mCustomView; field in ActionBarContextView 99 if (mCustomView != null) { in setCustomView() 100 removeView(mCustomView); in setCustomView() 102 mCustomView = view; in setCustomView() 198 mCustomView = null; in killMode() 273 if (mTitleLayout != null && mCustomView == null) { in onMeasure() 288 if (mCustomView != null) { in onMeasure() 289 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams(); in onMeasure() 298 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode), in onMeasure() 334 if (mTitleLayout != null && mCustomView == null && mTitleLayout.getVisibility() != GONE) { in onLayout() [all …]
|
D | ToolbarWidgetWrapper.java | 71 private View mCustomView; field in ToolbarWidgetWrapper 436 if ((changed & ActionBar.DISPLAY_SHOW_CUSTOM) != 0 && mCustomView != null) { in setDisplayOptions() 438 mToolbar.addView(mCustomView); in setDisplayOptions() 440 mToolbar.removeView(mCustomView); in setDisplayOptions() 566 if (mCustomView != null && (mDisplayOpts & ActionBar.DISPLAY_SHOW_CUSTOM) != 0) { in setCustomView() 567 mToolbar.removeView(mCustomView); in setCustomView() 569 mCustomView = view; in setCustomView() 571 mToolbar.addView(mCustomView); in setCustomView() 577 return mCustomView; in getCustomView()
|
D | ScrollingTabContainerView.java | 387 private View mCustomView; field in ScrollingTabContainerView.TabView 458 mCustomView = custom; in update() 465 if (mCustomView != null) { in update() 466 removeView(mCustomView); in update() 467 mCustomView = null; in update()
|
/frameworks/base/core/java/android/webkit/ |
D | FindActionModeCallback.java | 43 private View mCustomView; field in FindActionModeCallback 55 mCustomView = LayoutInflater.from(context).inflate( in FindActionModeCallback() 57 mEditText = (EditText) mCustomView.findViewById( in FindActionModeCallback() 62 mMatches = (TextView) mCustomView.findViewById( in FindActionModeCallback() 207 mode.setCustomView(mCustomView); in onCreateActionMode() 282 View view = (View) mCustomView.getParent(); in getActionModeGlobalBottom() 284 view = mCustomView; in getActionModeGlobalBottom()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ActionBarContextView.java | 47 private View mCustomView; field in ActionBarContextView 142 if (mCustomView != null) { in setCustomView() 143 removeView(mCustomView); in setCustomView() 145 mCustomView = view; in setCustomView() 260 mCustomView = null; in killMode() 335 if (mTitleLayout != null && mCustomView == null) { in onMeasure() 351 if (mCustomView != null) { in onMeasure() 352 ViewGroup.LayoutParams lp = mCustomView.getLayoutParams(); in onMeasure() 361 mCustomView.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode), in onMeasure() 398 if (mTitleLayout != null && mCustomView == null && mTitleLayout.getVisibility() != GONE) { in onLayout() [all …]
|
D | ToolbarWidgetWrapper.java | 71 private View mCustomView; field in ToolbarWidgetWrapper 431 if ((changed & ActionBar.DISPLAY_SHOW_CUSTOM) != 0 && mCustomView != null) { in setDisplayOptions() 433 mToolbar.addView(mCustomView); in setDisplayOptions() 435 mToolbar.removeView(mCustomView); in setDisplayOptions() 561 if (mCustomView != null && (mDisplayOpts & ActionBar.DISPLAY_SHOW_CUSTOM) != 0) { in setCustomView() 562 mToolbar.removeView(mCustomView); in setCustomView() 564 mCustomView = view; in setCustomView() 566 mToolbar.addView(mCustomView); in setCustomView() 572 return mCustomView; in getCustomView()
|
D | ScrollingTabContainerView.java | 367 private View mCustomView; field in ScrollingTabContainerView.TabView 420 mCustomView = custom; in update() 427 if (mCustomView != null) { in update() 428 removeView(mCustomView); in update() 429 mCustomView = null; in update()
|
/frameworks/base/core/java/com/android/internal/view/ |
D | StandaloneActionMode.java | 37 private WeakReference<View> mCustomView; field in StandaloneActionMode 89 mCustomView = view != null ? new WeakReference<View>(view) : null; in setCustomView() 125 return mCustomView != null ? mCustomView.get() : null; in getCustomView()
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/ |
D | StandaloneActionMode.java | 40 private WeakReference<View> mCustomView; field in StandaloneActionMode 92 mCustomView = view != null ? new WeakReference<View>(view) : null; in setCustomView() 128 return mCustomView != null ? mCustomView.get() : null; in getCustomView()
|
/frameworks/support/design/src/android/support/design/widget/ |
D | TabLayout.java | 904 private View mCustomView; 941 return mCustomView; 959 mCustomView = view; 1137 private View mCustomView; field in TabLayout.TabView 1210 mCustomView = custom; in update() 1223 if (mCustomView != null) { in update() 1224 removeView(mCustomView); in update() 1225 mCustomView = null; in update() 1231 if (mCustomView == null) { in update()
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/ |
D | WindowDecorActionBar.java | 935 private WeakReference<View> mCustomView; field in WindowDecorActionBar.ActionModeImpl 1015 mCustomView = new WeakReference<View>(view); in setCustomView() 1061 return mCustomView != null ? mCustomView.get() : null; in getCustomView() 1110 private View mCustomView; field in WindowDecorActionBar.TabImpl 1135 return mCustomView; in getCustomView() 1140 mCustomView = view; in setCustomView()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | WindowDecorActionBar.java | 961 private WeakReference<View> mCustomView; field in WindowDecorActionBar.ActionModeImpl 1042 mCustomView = new WeakReference<View>(view); in setCustomView() 1088 return mCustomView != null ? mCustomView.get() : null; in getCustomView() 1137 private View mCustomView; field in WindowDecorActionBar.TabImpl 1162 return mCustomView; in getCustomView() 1167 mCustomView = view; in setCustomView()
|