Home
last modified time | relevance | path

Searched refs:screen (Results 1 – 25 of 74) sorted by relevance

123

/frameworks/base/tools/aapt2/configuration/
DConfigurationParser_test.cpp96 <screen-density-groups>
97 <screen-density-group label="large" version-code-order="2">
98 <screen-density>xhdpi</screen-density>
99 <screen-density>xxhdpi</screen-density>
100 <screen-density>xxxhdpi</screen-density>
101 </screen-density-group>
102 <screen-density-group label="alldpi" version-code-order="1">
103 <screen-density>ldpi</screen-density>
104 <screen-density>mdpi</screen-density>
105 <screen-density>hdpi</screen-density>
[all …]
/frameworks/native/opengl/tests/testViewport/
DREADME7 The program clears the screen to blue, then draws a full screen white quad that
8 is alligned to the screen.
9 (Therefore the whole screen should appear to be white.)
12 Note that screen is all white.
14 Rotate screen 90 degrees.
16 Expected: screen is still all white.
18 Actual: screen is blue with offset white rectangle.
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/widget/
DFooterPreferenceMixinCompat.java49 final PreferenceScreen screen = mFragment.getPreferenceScreen(); in createFooterPreference() local
50 if (mFooterPreference != null && screen != null) { in createFooterPreference()
51 screen.removePreference(mFooterPreference); in createFooterPreference()
55 if (screen != null) { in createFooterPreference()
56 screen.addPreference(mFooterPreference); in createFooterPreference()
DFooterPreferenceMixin.java55 final PreferenceScreen screen = mFragment.getPreferenceScreen(); in createFooterPreference() local
56 if (mFooterPreference != null && screen != null) { in createFooterPreference()
57 screen.removePreference(mFooterPreference); in createFooterPreference()
61 if (screen != null) { in createFooterPreference()
62 screen.addPreference(mFooterPreference); in createFooterPreference()
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
DShortcutPicker.java50 PreferenceScreen screen = getPreferenceManager().createPreferenceScreen(context); in onCreatePreferences() local
51 screen.setOrderingAsAdded(true); in onCreatePreferences()
59 screen.addPreference(mNonePreference); in onCreatePreferences()
65 screen.addPreference(otherApps); in onCreatePreferences()
76 screen.addPreference(appPreference); in onCreatePreferences()
81 screen.addPreference(shortcutPref); in onCreatePreferences()
90 screen.removePreference(otherApps); in onCreatePreferences()
95 screen.addPreference(p); in onCreatePreferences()
99 setPreferenceScreen(screen); in onCreatePreferences()
DTunerActivity.java132 PreferenceScreen screen = in onCreatePreferences() local
135 setPreferenceScreen(screen); in onCreatePreferences()
140 screen.addPreference(p); in onCreatePreferences()
148 PreferenceScreen screen = getPreferenceScreen(); in onDestroy() local
149 while (screen.getPreferenceCount() > 0) { in onDestroy()
150 Preference p = screen.getPreference(0); in onDestroy()
151 screen.removePreference(p); in onDestroy()
DDemoModeFragment.java71 PreferenceScreen screen = getPreferenceManager().createPreferenceScreen(context); in onCreatePreferences() local
72 screen.addPreference(mEnabledSwitch); in onCreatePreferences()
73 screen.addPreference(mOnSwitch); in onCreatePreferences()
74 setPreferenceScreen(screen); in onCreatePreferences()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/
DAbstractPreferenceController.java27 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
34 setVisible(screen, prefKey, true /* visible */); in displayPreference()
36 final Preference preference = screen.findPreference(prefKey); in displayPreference()
41 setVisible(screen, prefKey, false /* visible */); in displayPreference()
/frameworks/base/core/proto/android/os/
Denums.proto123 // Ensures that the CPU is running; the screen and keyboard backlight
127 // Ensures that the screen is on (but may be dimmed); the keyboard
130 // the system, causing both the screen and the CPU to be turned off.
133 // Ensures that the screen is on at full brightness; the keyboard
136 // by the system, causing both the screen and the CPU to be turned off.
139 // Ensures that the screen and keyboard backlight are on at full
142 // both the screen and the CPU to be turned off.
145 // Turns the screen off when the proximity sensor activates. If the
146 // proximity sensor detects that an object is nearby, the screen turns
147 // off immediately. Shortly after the object moves away, the screen
[all …]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/development/
DDeveloperOptionsPreferenceController.java51 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
52 super.displayPreference(screen); in displayPreference()
53 mPreference = screen.findPreference(getPreferenceKey()); in displayPreference()
DAbstractEnableAdbPreferenceController.java54 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
55 super.displayPreference(screen); in displayPreference()
57 mPreference = (SwitchPreference) screen.findPreference(KEY_ENABLE_ADB); in displayPreference()
DAbstractLogdSizePreferenceController.java71 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
72 super.displayPreference(screen); in displayPreference()
74 mLogdSize = (ListPreference) screen.findPreference(SELECT_LOGD_SIZE_KEY); in displayPreference()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/deviceinfo/
DAbstractSerialNumberPreferenceController.java55 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
56 super.displayPreference(screen); in displayPreference()
57 final Preference pref = screen.findPreference(KEY_SERIAL_NUMBER); in displayPreference()
DAbstractBluetoothAddressPreferenceController.java61 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
62 super.displayPreference(screen); in displayPreference()
63 mBtAddress = screen.findPreference(KEY_BT_ADDRESS); in displayPreference()
DAbstractWifiMacAddressPreferenceController.java70 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
71 super.displayPreference(screen); in displayPreference()
72 mWifiMacAddress = screen.findPreference(KEY_WIFI_MAC_ADDRESS); in displayPreference()
DAbstractImsStatusPreferenceController.java76 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
77 super.displayPreference(screen); in displayPreference()
78 mImsStatus = screen.findPreference(KEY_IMS_REGISTRATION_STATE); in displayPreference()
DAbstractIpAddressPreferenceController.java68 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
69 super.displayPreference(screen); in displayPreference()
70 mIpAddress = screen.findPreference(KEY_IP_ADDRESS); in displayPreference()
DAbstractUptimePreferenceController.java78 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
79 super.displayPreference(screen); in displayPreference()
80 mUptime = screen.findPreference(KEY_UPTIME); in displayPreference()
/frameworks/base/tools/aapt2/
DConfiguration.proto152 // The smallest screen dimension, regardless of orientation, in dp.
155 // Whether the device screen is classified as small, normal, large, xlarge.
158 // Whether the device screen is long.
161 // Whether the screen is round (Android Wear).
164 // Whether the screen supports wide color gamut.
167 // Whether the screen has high dynamic range.
179 // The device's screen density in dots-per-inch (dpi).
/frameworks/base/core/proto/android/server/
Dpowermanagerservice.proto94 // True if boot completed occurred. We keep the screen on until this happens.
114 // sensor to go negative before turning the screen on.
141 // Timestamp of the last screen brightness boost.
143 // True if screen brightness boost is in progress.
192 // Turn the screen on when the wake lock is acquired.
195 // so the screen stays on for a little longer.
241 // True if the device should suspend when the screen is off due to proximity.
270 // True if doze should not be started until after the screen off transition.
272 // The minimum screen off timeout, in milliseconds.
274 // The screen dim duration, in milliseconds.
[all …]
/frameworks/base/core/proto/android/app/
Dnotificationmanager.proto65 // (e.g. with notification lights or by turning the screen on) when the
66 // screen is off.
70 // when the screen is on (e.g. by peeking onto the screen).
73 // Whether full screen intents} from notifications intercepted by DND
/frameworks/base/services/core/java/com/android/server/policy/
DEventLogTags.logtags6 # 0 for screen off, 1 for screen on
/frameworks/base/services/core/java/com/android/server/
DEventLogTags.logtags21 # This is logged when the screen on broadcast has completed
23 # This is logged when the screen broadcast has completed
25 # This is logged when the screen on broadcast has completed
27 # This is logged when the screen is turned on or off.
30 # regardless of whether the screen is off) is acquired or released.
77 # when notifications are newly displayed on screen, or disappear from screen
/frameworks/base/tools/aapt2/optimize/
DMultiApkGenerator.cpp378 std::unique_ptr<xml::Element> screen = util::make_unique<xml::Element>(); in AddScreens() local
379 screen->name = "screen"; in AddScreens()
381 xml::Attribute* size = screen->FindOrCreateAttribute(kSchemaAndroid, "screenSize"); in AddScreens()
385 xml::Attribute* density = screen->FindOrCreateAttribute(kSchemaAndroid, "screenDensity"); in AddScreens()
390 parent->AppendChild(std::move(screen)); in AddScreens()
/frameworks/base/packages/SystemUI/docs/
Dclock-plugins.md5 The clock appearing on the lock screen and always on display (AOD) can be
10 Clocks are high risk for battery consumption and screen burn-in because they
17 To prevent screen burn-in, clocks should not be composed of large solid
18 blocks of color, and the clock should be moved around the screen to

123