Searched refs:mIconDrawable (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/tests/coretests/src/android/graphics/drawable/ |
D | AdaptiveIconDrawableTest.java | 51 private AdaptiveIconDrawable mIconDrawable; field in AdaptiveIconDrawableTest 62 mIconDrawable = new AdaptiveIconDrawable(mBackgroundDrawable, mForegroundDrawable); in testDraw_withoutBounds() 71 mIconDrawable.draw(can1); in testDraw_withoutBounds() 92 …mIconDrawable = (AdaptiveIconDrawable) getContext().getResources().getDrawable(android.R.drawable.… in testDraw_withBounds() 97 mIconDrawable.setBounds(0, 0, width, height); in testDraw_withBounds() 98 mIconDrawable.draw(can_org); in testDraw_withBounds() 104 mIconDrawable.setBounds(left, top, right, bottom); in testDraw_withBounds() 106 mIconDrawable.draw(can_test); in testDraw_withBounds() 132 mIconDrawable = new AdaptiveIconDrawable(mBackgroundDrawable, mForegroundDrawable); in testGetIconMask_withoutBounds() 133 Path pathFromDrawable = mIconDrawable.getIconMask(); in testGetIconMask_withoutBounds() [all …]
|
/frameworks/base/core/java/com/android/internal/view/menu/ |
D | ActionMenuItem.java | 50 private Drawable mIconDrawable; field in ActionMenuItem 97 return mIconDrawable; in getIcon() 188 mIconDrawable = icon; in setIcon() 197 mIconDrawable = mContext.getDrawable(iconRes); in setIcon() 236 if (mIconDrawable != null && (mHasIconTint || mHasIconTintMode)) { in applyIconTint() 237 mIconDrawable = mIconDrawable.mutate(); in applyIconTint() 240 mIconDrawable.setTintList(mIconTintList); in applyIconTint() 244 mIconDrawable.setTintMode(mIconTintMode); in applyIconTint()
|
D | MenuItemImpl.java | 65 private Drawable mIconDrawable; field in MenuItemImpl 471 if (mIconDrawable != null) { in getIcon() 472 return applyIconTintIfNecessary(mIconDrawable); in getIcon() 478 mIconDrawable = icon; in getIcon() 487 mIconDrawable = icon; in setIcon() 495 mIconDrawable = null; in setIcon()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | ScreenRecordDrawable.java | 42 private Drawable mIconDrawable; field in ScreenRecordDrawable 63 mIconDrawable = r.getDrawable(R.drawable.ic_screenrecord, theme).mutate(); in inflate() 129 mIconDrawable.setBounds(iconBounds); in draw() 130 mIconDrawable.draw(canvas); in draw()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationConversationInfoTest.java | 127 private Drawable mIconDrawable; field in NotificationConversationInfoTest 202 .thenReturn(mIconDrawable); in setUp() 261 assertEquals(mIconDrawable, view.getDrawable()); in testBindNotification_SetsShortcutIcon()
|