Home
last modified time | relevance | path

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

1234

/frameworks/base/tools/aapt2/configuration/
DConfigurationParser_test.cpp77 <screen-density-groups>
78 <screen-density-group label="large" version-code-order="2">
79 <screen-density>xhdpi</screen-density>
80 <screen-density>xxhdpi</screen-density>
81 <screen-density>xxxhdpi</screen-density>
82 </screen-density-group>
83 <screen-density-group label="alldpi" version-code-order="1">
84 <screen-density>ldpi</screen-density>
85 <screen-density>mdpi</screen-density>
86 <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/av/media/libheadtracking/
DREADME.md14 - Display orientation, defined as the angle between the "physical" screen and
15 the "logical" screen.
16 - Transform between the screen and the sound stage.
23 - Screen-relative: the head pose, screen pose and stage pose are all taken
25 perceived to be located at a fixed place relative to the screen.
37 whatever pose the screen and head are currently at should be considered as the
96 This is the primary screen that the user will be looking at, which is relevant
99 origin is at the center of the screen. X-axis goes from left to right, Z-axis
100 goes from the screen bottom to the screen top, Y-axis goes “into” the screen (
101 from the direction of the viewer). The up/down/left/right of the screen are
[all …]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/
DAbstractPreferenceController.java34 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
41 setVisible(screen, prefKey, true /* visible */); in displayPreference()
43 final Preference preference = screen.findPreference(prefKey); in displayPreference()
48 setVisible(screen, prefKey, false /* visible */); in displayPreference()
114 protected void replaceEnterpriseStringTitle(PreferenceScreen screen, in replaceEnterpriseStringTitle() argument
120 Preference preference = screen.findPreference(preferenceKey); in replaceEnterpriseStringTitle()
133 PreferenceScreen screen, String preferenceKey, String overrideKey, int resource) { in replaceEnterpriseStringSummary() argument
138 Preference preference = screen.findPreference(preferenceKey); in replaceEnterpriseStringSummary()
/frameworks/base/packages/SystemUI/docs/device-entry/
Dglossary.md7 …e user has not specified a security method of NONE. Consists of the lock screen and bouncer. …
8screen<br><br>![ss_aod](imgs/lockscreen.png) | The first screen available when tu…
10 …n the lock screen. When there is no media and no notifications - or we enter AOD - big clock is al…
11 …d display state. This is controlled by the doze component. The same lock screen views (ie: clock, …
22 …ing their device. Instead, they could have wanted to just check the lock screen. Because of this, …
24screen/last app. This CUJ prioritizes speed of device entry. SystemUI hides interactive views (no…
25 …on to indicate they'd like to enter the device (ie: swipe up on the lock screen or long press on t…
30screen and on AOD. Users cannot authenticate from the screen-off state.<br><br>Supported SystemUI …
31 …rs can get into this state after tapping on a notification from the lock screen or locked expanded…
Ddoze.md3 …r the `dozing` state after a user intent to turn off the screen (ie: power button) or the screen t…
5 Always-on Display (AOD) provides an alternative 'screen-off' experience. Instead, of completely tur…
14 * Pulsing - waking up the screen to show notifications (from AOD and screen off)
16 * Wake-up gestures - including lift to wake and tap to wake (from AOD and screen off)
26screen brightness is handled by [DozeScreenBrightness][5] which uses the brightness sensor specifi…
63 …mage on the screen for an elongated period of time, AOD designs must take into consideration burn-…
65 To prevent burn-in, it is recommended to often shift UI on the screen. [DozeUi][17] schedules a cal…
/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.java150 PreferenceScreen screen = in onCreatePreferences() local
153 setPreferenceScreen(screen); in onCreatePreferences()
158 screen.addPreference(p); in onCreatePreferences()
166 PreferenceScreen screen = getPreferenceScreen(); in onDestroy() local
167 while (screen.getPreferenceCount() > 0) { in onDestroy()
168 Preference p = screen.getPreference(0); in onDestroy()
169 screen.removePreference(p); in onDestroy()
/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.java57 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
58 super.displayPreference(screen); in displayPreference()
60 mPreference = (RestrictedSwitchPreference) screen.findPreference(KEY_ENABLE_ADB); in displayPreference()
/frameworks/proto_logging/stats/enums/os/
Denums.proto149 // Ensures that the CPU is running; the screen and keyboard backlight
153 // Ensures that the screen is on (but may be dimmed); the keyboard
156 // the system, causing both the screen and the CPU to be turned off.
159 // Ensures that the screen is on at full brightness; the keyboard
162 // by the system, causing both the screen and the CPU to be turned off.
165 // Ensures that the screen and keyboard backlight are on at full
168 // both the screen and the CPU to be turned off.
171 // Turns the screen off when the proximity sensor activates. If the
172 // proximity sensor detects that an object is nearby, the screen turns
173 // off immediately. Shortly after the object moves away, the screen
[all …]
/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.java71 public void displayPreference(PreferenceScreen screen) { in displayPreference() argument
72 super.displayPreference(screen); in displayPreference()
74 mWifiMacAddress = screen.findPreference(KEY_WIFI_MAC_ADDRESS); 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.proto151 // The smallest screen dimension, regardless of orientation, in dp.
154 // Whether the device screen is classified as small, normal, large, xlarge.
157 // Whether the device screen is long.
160 // Whether the screen is round (Android Wear).
163 // Whether the screen supports wide color gamut.
166 // Whether the screen has high dynamic range.
178 // The device's screen density in dots-per-inch (dpi).
/frameworks/base/packages/SystemUI/unfold/src/com/android/systemui/unfold/updates/screen/
DScreenStatusProvider.kt16 package com.android.systemui.unfold.updates.screen
18 import com.android.systemui.unfold.updates.screen.ScreenStatusProvider.ScreenListener
/frameworks/base/services/core/java/com/android/server/policy/
DEventLogTags.logtags6 # 0 for screen off, 1 for screen on
/frameworks/base/core/proto/android/app/
Dnotificationmanager.proto67 // (e.g. with notification lights or by turning the screen on) when the
68 // screen is off.
72 // when the screen is on (e.g. by peeking onto the screen).
75 // Whether full screen intents} from notifications intercepted by DND
/frameworks/layoutlib/validator/resources/
Dstrings.properties23 …ithin_screencapture = This item\'s on-screen location (<tt>%1$s</tt>) were not within the screen c…
32 result_message_addendum_view_potentially_obscured = This item may be obscured by other on-screen co…
38 result_message_brief_same_view_bounds = Multiple %1$s items share this location on the screen.
39 result_message_same_view_bounds = This %1$s item has the same on-screen location (<tt>%2$s</tt>) as…
40 result_message_view_bounds = This %1$s item also has an on-screen location of <tt>%2$s</tt>.
46 …editable <tt>TextView</tt> has an <tt>android:contentDescription</tt>. A screen reader may read th…
73 result_message_should_not_focus = This item would not be focused by a screen reader.
75 result_message_missing_speakable_text = This item may not have a label readable by screen readers.
122 …dering cycle due to its <tt>%1$s</tt> attribute. Traversal behavior with screen readers may be unp…
123 …oid:accessibilityTraversalAfter</tt> attributes. Traversal behavior with screen readers may be unp…
[all …]
/frameworks/base/core/proto/android/server/
Dpowermanagerservice.proto97 // True if boot completed occurred. We keep the screen on until this happens.
117 // sensor to go negative before turning the screen on.
144 // Timestamp of the last screen brightness boost.
146 // True if screen brightness boost is in progress.
211 // Turn the screen on when the wake lock is acquired.
214 // so the screen stays on for a little longer.
264 // True if the device should suspend when the screen is off due to proximity.
293 // True if doze should not be started until after the screen off transition.
295 // The minimum screen off timeout, in milliseconds.
297 // The screen dim duration, in milliseconds.
[all …]
/frameworks/base/packages/SystemUI/unfold/src/com/android/systemui/unfold/compat/
DSizeScreenStatusProvider.kt18 import com.android.systemui.unfold.updates.screen.ScreenStatusProvider
19 import com.android.systemui.unfold.updates.screen.ScreenStatusProvider.ScreenListener
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DLifecycleScreenStatusProvider.kt18 import com.android.systemui.unfold.updates.screen.ScreenStatusProvider
19 import com.android.systemui.unfold.updates.screen.ScreenStatusProvider.ScreenListener
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/power/data/repository/
DPowerRepositoryImplTest.kt92 fun `isInteractive - emits initial true value if screen was on`() = in isInteractive - emits initial true value if screen was on()
105 fun `isInteractive - emits initial false value if screen was off`() = in isInteractive - emits initial false value if screen was off()
118 fun `isInteractive - emits true when the screen turns on`() = in isInteractive - emits true when the screen turns on()
132 fun `isInteractive - emits false when the screen turns off`() = in isInteractive - emits false when the screen turns off()

1234