/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/ |
H A D | NavigationBarModule.java | 46 static NavigationBarFrame provideNavigationBarFrame(@DisplayId LayoutInflater layoutInflater) { in provideNavigationBarFrame() argument 47 return (NavigationBarFrame) layoutInflater.inflate(R.layout.navigation_bar_window, null); in provideNavigationBarFrame() 54 @DisplayId LayoutInflater layoutInflater, NavigationBarFrame frame) { in provideNavigationBarview() 55 View barView = layoutInflater.inflate(R.layout.navigation_bar, frame); in provideNavigationBarview()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
H A D | ShadeViewProviderModule.kt | 73 layoutInflater: LayoutInflater, 84 layoutInflater.inflate(R.layout.scene_window_root, null) as SceneWindowRootView 93 layoutInflater.inflate(R.layout.super_notification_shade, null) 130 layoutInflater: LayoutInflater, 137 layoutInflater.inflate( 167 layoutInflater: LayoutInflater, 169 return layoutInflater.inflate(R.layout.keyguard_bottom_area, npv, false)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/window/ |
H A D | StatusBarWindowModule.kt | 24 fun providesStatusBarWindowView(layoutInflater: LayoutInflater): StatusBarWindowView { 25 return layoutInflater.inflate(
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/user/ui/binder/ |
H A D | UserSwitcherViewBinder.kt | 58 layoutInflater: LayoutInflater, 67 val popupMenuAdapter = MenuAdapter(layoutInflater) 150 layoutInflater.inflate( 190 private val layoutInflater: LayoutInflater, 229 layoutInflater.inflate(
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/ |
H A D | MediaContainerController.kt | 29 private val layoutInflater: LayoutInflater 45 val inflated = layoutInflater.inflate(
|
H A D | SectionHeaderController.kt | 43 private val layoutInflater: LayoutInflater, 69 val inflated = layoutInflater.inflate(
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/complication/dagger/ |
H A D | DreamMediaEntryComplicationComponent.java | 77 static View provideMediaEntryView(LayoutInflater layoutInflater) { in provideMediaEntryView() argument 78 return (View) layoutInflater.inflate(R.layout.dream_overlay_media_entry_chip, null); in provideMediaEntryView()
|
H A D | DreamClockTimeComplicationComponent.kt | 66 fun provideComplicationView(layoutInflater: LayoutInflater): View { 69 layoutInflater.inflate(
|
H A D | ComplicationHostViewModule.java | 62 LayoutInflater layoutInflater) { in providesComplicationHostView() argument 64 layoutInflater.inflate(R.layout.dream_overlay_complications_layer, in providesComplicationHostView()
|
H A D | DreamHomeControlsComplicationComponent.java | 87 LayoutInflater layoutInflater, in provideHomeControlsChipView() argument 90 (ImageView) layoutInflater.inflate(R.layout.dream_overlay_home_controls_chip, in provideHomeControlsChipView()
|
/aosp14/frameworks/base/packages/SystemUI/customization/src/com/android/systemui/shared/clocks/ |
H A D | DefaultClockProvider.kt | 34 val layoutInflater: LayoutInflater, 48 layoutInflater,
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/dagger/ |
H A D | KeyguardBouncerModule.java | 50 LayoutInflater layoutInflater) { in providesKeyguardSecurityContainer() argument 52 (KeyguardSecurityContainer) layoutInflater.inflate( in providesKeyguardSecurityContainer()
|
H A D | ClockRegistryModule.java | 56 LayoutInflater layoutInflater, in getClockRegistry() argument 68 layoutInflater, in getClockRegistry()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/user/ |
H A D | UserSwitcherFullscreenDialog.kt | 55 layoutInflater = layoutInflater,
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/toast/ |
H A D | ToastFactory.java | 47 LayoutInflater layoutInflater, in ToastFactory() argument 50 mLayoutInflater = layoutInflater; in ToastFactory()
|
H A D | SystemUIToast.java | 71 SystemUIToast(LayoutInflater layoutInflater, Context context, CharSequence text, in SystemUIToast() argument 73 this(layoutInflater, context, text, null, packageName, userId, in SystemUIToast() 77 SystemUIToast(LayoutInflater layoutInflater, Context context, CharSequence text, in SystemUIToast() argument 80 mLayoutInflater = layoutInflater; in SystemUIToast()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/clocks/ |
H A D | DefaultClockProviderTest.kt | 60 @Mock private lateinit var layoutInflater: LayoutInflater 67 whenever(layoutInflater.inflate(eq(R.layout.clock_default_small), any(), anyBoolean())) 69 whenever(layoutInflater.inflate(eq(R.layout.clock_default_large), any(), anyBoolean())) 76 provider = DefaultClockProvider(context, layoutInflater, resources)
|
H A D | AnimatableClockViewTest.kt | 48 val layoutInflater = LayoutInflater.from(context) regex 50 layoutInflater.inflate(R.layout.clock_default_small, null) as AnimatableClockView
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/ |
H A D | StructureAdapter.kt | 32 val layoutInflater = LayoutInflater.from(parent.context) regex 34 layoutInflater.inflate(R.layout.controls_structure_page, parent, false),
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotificationGutsTest.kt | 54 val layoutInflater = LayoutInflater.from(mContext) regex 55 guts = layoutInflater.inflate(R.layout.notification_guts, null) as NotificationGuts
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
H A D | KeyguardUserSwitcherAdapterTest.kt | 61 private lateinit var layoutInflater: LayoutInflater 74 mContext.addMockSystemService(Context.LAYOUT_INFLATER_SERVICE, layoutInflater) 75 `when`(layoutInflater.inflate(anyInt(), any(ViewGroup::class.java), anyBoolean()))
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/power/ |
H A D | InattentiveSleepWarningView.java | 48 final LayoutInflater layoutInflater = LayoutInflater.from(mContext); in InattentiveSleepWarningView() local 49 layoutInflater.inflate(R.layout.inattentive_sleep_warning, this, true /* attachToRoot */); in InattentiveSleepWarningView()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/sensorprivacy/ |
H A D | SensorUseDialog.kt | 28 val layoutInflater = LayoutInflater.from(context) regex 29 val customTitleView = layoutInflater.inflate(R.layout.sensor_use_started_title, null)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
H A D | AuthContainerView.java | 329 final LayoutInflater layoutInflater = LayoutInflater.from(mContext); in AuthContainerView() local 330 mFrameLayout = (FrameLayout) layoutInflater.inflate( in AuthContainerView() 359 showPrompt(config, layoutInflater, promptViewModel, in AuthContainerView() 364 showLegacyPrompt(config, layoutInflater, fpProps, faceProps); in AuthContainerView() 383 private void showPrompt(@NonNull Config config, @NonNull LayoutInflater layoutInflater, in showPrompt() argument 397 final BiometricPromptLayout view = (BiometricPromptLayout) layoutInflater.inflate( in showPrompt() 416 private void showLegacyPrompt(@NonNull Config config, @NonNull LayoutInflater layoutInflater, in showLegacyPrompt() argument 429 (AuthBiometricFingerprintAndFaceView) layoutInflater.inflate( in showLegacyPrompt() 439 (AuthBiometricFingerprintView) layoutInflater.inflate( in showLegacyPrompt() 446 mBiometricView = (AuthBiometricFaceView) layoutInflater.inflate( in showLegacyPrompt()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
H A D | KeyguardSliceViewTest.java | 55 LayoutInflater layoutInflater = LayoutInflater.from(getContext()); in setUp() local 56 mKeyguardSliceView = (KeyguardSliceView) layoutInflater in setUp()
|