/frameworks/base/tests/UiBench/src/com/android/test/uibench/recyclerview/ |
D | RvArrayAdapter.java | 26 private LayoutInflater mLayoutInflater; field in RvArrayAdapter 47 if (mLayoutInflater == null) { in onCreateViewHolder() 48 mLayoutInflater = LayoutInflater.from(viewGroup.getContext()); in onCreateViewHolder() 50 View v = mLayoutInflater.inflate(android.R.layout.simple_list_item_1, viewGroup, false); in onCreateViewHolder()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
D | KeyguardSecurityViewFlipperControllerTest.java | 60 private LayoutInflater mLayoutInflater; field in KeyguardSecurityViewFlipperControllerTest 94 mLayoutInflater, mAsyncLayoutInflater, mKeyguardSecurityViewControllerFactory, in setup() 104 reset(mLayoutInflater); in showSecurityScreen_canInflateAllModes() 105 when(mLayoutInflater.inflate(anyInt(), eq(mView), eq(false))) in showSecurityScreen_canInflateAllModes() 109 verify(mLayoutInflater, never()).inflate( in showSecurityScreen_canInflateAllModes() 112 verify(mLayoutInflater).inflate(anyInt(), eq(mView), eq(false)); in showSecurityScreen_canInflateAllModes()
|
D | KeyguardPresentationTest.java | 63 LayoutInflater mLayoutInflater; field in KeyguardPresentationTest 79 mLayoutInflater = LayoutInflater.from(mContext); in setUp() 80 mLayoutInflater.setPrivateFactory(new LayoutInflater.Factory2() { in setUp()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/toast/ |
D | ToastFactory.java | 43 private final LayoutInflater mLayoutInflater; field in ToastFactory 50 mLayoutInflater = layoutInflater; in ToastFactory() 74 return new SystemUIToast(mLayoutInflater, context, text, mPlugin.createToast(text, in createToast() 77 return new SystemUIToast(mLayoutInflater, context, text, packageName, userId, in createToast()
|
D | SystemUIToast.java | 58 private final LayoutInflater mLayoutInflater; field in SystemUIToast 80 mLayoutInflater = layoutInflater; in SystemUIToast() 172 final View toastView = mLayoutInflater.inflate( in inflateToastView()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/clock/ |
D | AnalogClockController.java | 48 private final LayoutInflater mLayoutInflater; field in AnalogClockController 92 mLayoutInflater = inflater; in AnalogClockController() 98 mBigClockView = (ClockLayout) mLayoutInflater.inflate(R.layout.analog_clock, null); in createViews() 101 mView = mLayoutInflater.inflate(R.layout.digital_clock, null); in createViews()
|
D | BubbleClockController.java | 48 private final LayoutInflater mLayoutInflater; field in BubbleClockController 92 mLayoutInflater = inflater; in BubbleClockController() 98 mView = (ClockLayout) mLayoutInflater.inflate(R.layout.bubble_clock, null); in createViews() 101 mLockClockContainer = mLayoutInflater.inflate(R.layout.digital_clock, null); in createViews()
|
D | DefaultClockController.java | 48 private final LayoutInflater mLayoutInflater; field in DefaultClockController 85 mLayoutInflater = inflater; in DefaultClockController() 90 mView = mLayoutInflater.inflate(R.layout.default_clock_preview, null); in createViews()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/notification/ |
D | ZenDurationDialog.java | 64 @VisibleForTesting protected LayoutInflater mLayoutInflater; field in ZenDurationDialog 134 if (mLayoutInflater == null) { in getContentView() 135 mLayoutInflater = new PhoneWindow(mContext).getLayoutInflater(); in getContentView() 137 View contentView = mLayoutInflater.inflate(R.layout.zen_mode_duration_dialog, in getContentView() 145 final View radioButton = mLayoutInflater.inflate(R.layout.zen_mode_radio_button, in getContentView() 150 final View radioButtonContent = mLayoutInflater.inflate(R.layout.zen_mode_condition, in getContentView()
|
D | EnableZenModeDialog.java | 100 protected LayoutInflater mLayoutInflater; field in EnableZenModeDialog 174 if (mLayoutInflater == null) { in getContentView() 175 mLayoutInflater = new PhoneWindow(mContext).getLayoutInflater(); in getContentView() 177 View contentView = mLayoutInflater.inflate(R.layout.zen_mode_turn_on_dialog_container, in getContentView() 186 final View radioButton = mLayoutInflater.inflate(R.layout.zen_mode_radio_button, in getContentView() 191 final View radioButtonContent = mLayoutInflater.inflate(R.layout.zen_mode_condition, in getContentView()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardSecurityViewFlipperController.java | 51 private final LayoutInflater mLayoutInflater; field in KeyguardSecurityViewFlipperController 66 mLayoutInflater = layoutInflater; in KeyguardSecurityViewFlipperController() 112 view = (KeyguardInputView) mLayoutInflater.inflate( in getSecurityView()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/ |
D | UserDetailViewAdapterTest.kt | 57 @Mock private lateinit var mLayoutInflater: LayoutInflater variable in com.android.systemui.qs.tiles.UserDetailViewAdapterTest 68 mContext.addMockSystemService(Context.LAYOUT_INFLATER_SERVICE, mLayoutInflater) in setUp() 69 `when`(mLayoutInflater.inflate(anyInt(), any(ViewGroup::class.java), anyBoolean())) in setUp()
|
/frameworks/base/tests/UiBench/src/com/android/test/uibench/ |
D | NotificationShadeActivity.java | 39 private LayoutInflater mLayoutInflater; field in NotificationShadeActivity.FakeNotificationStackView 76 View view = mLayoutInflater.inflate(R.layout.notification, this, false); in generateNextView() 96 mLayoutInflater = LayoutInflater.from(getContext()); in FakeNotificationStackView()
|
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/notification/ |
D | EnableZenModeDialogTest.java | 64 private LayoutInflater mLayoutInflater; field in EnableZenModeDialogTest 75 mLayoutInflater = LayoutInflater.from(mShadowContext); in setup() 79 mController.mLayoutInflater = mLayoutInflater; in setup()
|
D | ZenDurationDialogTest.java | 46 private LayoutInflater mLayoutInflater; field in ZenDurationDialogTest 54 mLayoutInflater = LayoutInflater.from(mContext); in setup() 57 mController.mLayoutInflater = mLayoutInflater; in setup()
|
/frameworks/base/core/java/android/accounts/ |
D | ChooseAccountTypeActivity.java | 175 private LayoutInflater mLayoutInflater; field in ChooseAccountTypeActivity.AccountArrayAdapter 182 mLayoutInflater = (LayoutInflater) context.getSystemService( in AccountArrayAdapter() 191 convertView = mLayoutInflater.inflate(R.layout.choose_account_row, null); in getView()
|
D | ChooseAccountActivity.java | 186 private LayoutInflater mLayoutInflater; field in ChooseAccountActivity.AccountArrayAdapter 192 mLayoutInflater = (LayoutInflater) context.getSystemService( in AccountArrayAdapter() 201 convertView = mLayoutInflater.inflate(R.layout.choose_account_row, null); in getView()
|
/frameworks/base/core/java/android/inputmethodservice/navigationbar/ |
D | NavigationBarInflaterView.java | 78 protected LayoutInflater mLayoutInflater; field in NavigationBarInflaterView 96 mLayoutInflater = LayoutInflater.from(mContext); in createInflaters() 113 mHorizontal = (FrameLayout) mLayoutInflater.inflate( in inflateChildren() 237 LayoutInflater inflater = landscape ? mLandscapeInflater : mLayoutInflater; in inflateButton()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/ |
D | NavigationBarInflaterView.java | 86 protected LayoutInflater mLayoutInflater; field in NavigationBarInflaterView 114 mLayoutInflater = LayoutInflater.from(mContext); in createInflaters() 131 mHorizontal = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout, in inflateChildren() 134 mVertical = (FrameLayout) mLayoutInflater.inflate(R.layout.navigation_layout_vertical, in inflateChildren() 292 LayoutInflater inflater = landscape ? mLandscapeInflater : mLayoutInflater; in inflateButton()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/ |
D | QSFragmentTest.java | 99 @Mock private LayoutInflater mLayoutInflater; field in QSFragmentTest 593 when(mLayoutInflater.cloneInContext(any(Context.class))).thenReturn(mLayoutInflater); in setUpInflater() 594 when(mLayoutInflater.inflate(anyInt(), nullable(ViewGroup.class), anyBoolean())) in setUpInflater() 598 when(mLayoutInflater.inflate(anyInt(), nullable(ViewGroup.class))) in setUpInflater() 601 mContext.addMockSystemService(Context.LAYOUT_INFLATER_SERVICE, mLayoutInflater); in setUpInflater()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardUserSwitcherController.java | 435 private final LayoutInflater mLayoutInflater; field in KeyguardUserSwitcherController.KeyguardUserAdapter 447 mLayoutInflater = layoutInflater; in KeyguardUserAdapter() 486 convertView = mLayoutInflater.inflate( in convertOrInflate()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ |
D | UdfpsControllerTest.java | 134 private LayoutInflater mLayoutInflater; field in UdfpsControllerTest 234 when(mLayoutInflater.inflate(R.layout.udfps_view, null, false)) in setUp() 236 when(mLayoutInflater.inflate(R.layout.udfps_enroll_view, null)) in setUp() 238 when(mLayoutInflater.inflate(R.layout.udfps_keyguard_view, null)) in setUp() 240 when(mLayoutInflater.inflate(R.layout.udfps_bp_view, null)) in setUp() 242 when(mLayoutInflater.inflate(R.layout.udfps_fpm_other_view, null)) in setUp() 292 mUdfpsController = new UdfpsController(mContext, new FakeExecution(), mLayoutInflater, in initUdfpsController()
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/ |
D | PageAdapter.java | 85 private final LayoutInflater mLayoutInflater; field in PageAdapter 135 mLayoutInflater = (LayoutInflater) context.getSystemService( in PageAdapter() 306 page = mLayoutInflater.inflate(R.layout.preview_page_selected, parent, false); in onCreateViewHolder() 308 page = mLayoutInflater.inflate(R.layout.preview_page, parent, false); in onCreateViewHolder()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/toast/ |
D | ToastUITest.java | 103 @Mock private LayoutInflater mLayoutInflater; field in ToastUITest 121 when(mLayoutInflater.inflate(anyInt(), eq(null))).thenReturn(mToastView); in setUp() 133 mLayoutInflater, in setUp()
|
/frameworks/base/core/java/android/app/ |
D | Fragment.java | 423 LayoutInflater mLayoutInflater; field in Fragment 1307 if (mLayoutInflater == null) { 1310 return mLayoutInflater; 1323 mLayoutInflater = layoutInflater; 1324 return mLayoutInflater; 2776 mLayoutInflater = null;
|