Home
last modified time | relevance | path

Searched refs:mPhoneWindow (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/tests/coretests/src/com/android/internal/policy/
DPhoneWindowTest.java52 private PhoneWindow mPhoneWindow; field in PhoneWindowTest
65 assertThat(mPhoneWindow.getAttributes().layoutInDisplayCutoutMode, in layoutInDisplayCutoutMode_unset()
74 assertThat(mPhoneWindow.getAttributes().layoutInDisplayCutoutMode, in layoutInDisplayCutoutMode_default()
83 assertThat(mPhoneWindow.getAttributes().layoutInDisplayCutoutMode, in layoutInDisplayCutoutMode_shortEdges()
92 assertThat(mPhoneWindow.getAttributes().layoutInDisplayCutoutMode, in layoutInDisplayCutoutMode_never()
101 Drawable backgroundDrawable = mPhoneWindow.getDecorView().getBackground(); in testWindowBackground_colorLiteral()
113 DecorView decorView = (DecorView) mPhoneWindow.getDecorView(); in testWindowBackgroundFallback_colorLiteral()
126 mPhoneWindow.setBackgroundDrawable(new ColorDrawable(Color.CYAN)); in testWindowBackgroundFallbackWithExplicitBackgroundSet_colorLiteral()
129 mPhoneWindow.setBackgroundDrawable(null); in testWindowBackgroundFallbackWithExplicitBackgroundSet_colorLiteral()
131 DecorView decorView = (DecorView) mPhoneWindow.getDecorView(); in testWindowBackgroundFallbackWithExplicitBackgroundSet_colorLiteral()
[all …]
DPhoneWindowActionModeTest.java43 private PhoneWindow mPhoneWindow; field in PhoneWindowActionModeTest
54 mPhoneWindow = (PhoneWindow) getActivity().getWindow(); in setUp()
56 mPhoneWindow.setCallback(mWindowCallback); in setUp()
63 ActionMode mode = mPhoneWindow.getDecorView().startActionMode( in testStartActionModeWithCallback()
73 ActionMode mode1 = mPhoneWindow.getDecorView().startActionMode( in testStartActionModePrimaryFinishesPreviousMode()
75 ActionMode mode2 = mPhoneWindow.getDecorView().startActionMode( in testStartActionModePrimaryFinishesPreviousMode()
87 ActionMode mode1 = mPhoneWindow.getDecorView().startActionMode( in testStartActionModeFloatingFinishesPreviousMode()
89 ActionMode mode2 = mPhoneWindow.getDecorView().startActionMode( in testStartActionModeFloatingFinishesPreviousMode()
101 ActionMode mode1 = mPhoneWindow.getDecorView().startActionMode( in testStartActionModePreservesPreviousModeOfDifferentType1()
103 ActionMode mode2 = mPhoneWindow.getDecorView().startActionMode( in testStartActionModePreservesPreviousModeOfDifferentType1()
[all …]
/frameworks/base/core/java/com/android/internal/policy/
DDecorContext.java42 private PhoneWindow mPhoneWindow; field in DecorContext
57 mPhoneWindow = phoneWindow; in setPhoneWindow()
67 mWindowManager = wm.createLocalWindowManager(mPhoneWindow); in getSystemService()