Home
last modified time | relevance | path

Searched refs:baseContext (Results 1 – 12 of 12) sorted by relevance

/aosp14/frameworks/base/core/java/com/android/internal/policy/
H A DDecorContext.java49 public DecorContext(Context baseContext, PhoneWindow phoneWindow) { in DecorContext() argument
58 displayContext = baseContext.createConfigurationContext(Configuration.EMPTY); in DecorContext()
61 displayContext = baseContext.createDisplayContext(display); in DecorContext()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
H A DWorkLockActivityTest.kt60 baseContext: Context,
66 attachBaseContext(baseContext)
77 baseContext = context,
/aosp14/frameworks/base/core/tests/coretests/src/com/android/internal/policy/
H A DDecorContextTest.java70 final Context baseContext = Mockito.spy(mContext.getApplicationContext()); in testDecorContextWithDefaultDisplay() local
75 DecorContext context = new DecorContext(baseContext, window); in testDecorContextWithDefaultDisplay()
81 verify(baseContext, never()).createDisplayContext(any()); in testDecorContextWithDefaultDisplay()
/aosp14/frameworks/base/core/tests/coretests/src/android/content/
H A DContextWrapperTest.java150 final Context baseContext = getBaseContext(); in getApplicationContext() local
151 if (baseContext == null) { in getApplicationContext()
/aosp14/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/widget/scaffold/
H A DSettingsScaffold.kt79 is ContextWrapper -> baseContext.getActivity()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/controller/
H A DAuxiliaryPersistenceWrapper.kt139 baseContext.deleteFile(file.getPath())
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/
H A DSystemUiController.kt190 is ContextWrapper -> baseContext.findWindow()
/aosp14/frameworks/base/core/java/android/app/
H A DContextImpl.java2916 ContextImpl baseContext = new ContextImpl(this, mMainThread, mPackageInfo, mParams, in createWindowContextBase() local
2922 baseContext.mForceDisplayOverrideInResources = false; in createWindowContextBase()
2923 baseContext.mContextType = CONTEXT_TYPE_WINDOW_CONTEXT; in createWindowContextBase()
2925 final Resources windowContextResources = createWindowContextResources(baseContext); in createWindowContextBase()
2926 baseContext.setResources(windowContextResources); in createWindowContextBase()
2929 baseContext.setDisplay(ResourcesManager.getInstance().getAdjustedDisplay( in createWindowContextBase()
2932 return baseContext; in createWindowContextBase()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/management/
H A DControlsListingControllerImplTest.kt131 return baseContext
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/ui/
H A DControlsUiControllerImplTest.kt122 mContext.baseContext
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/controller/
H A DControlsControllerImplTest.kt160 return baseContext
/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java479 void dump(PrintWriter pw, String prefix, Context baseContext, boolean redact) { in dump() argument