OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lightsout
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarView.java
140
public void setLowProfile(final boolean
lightsOut
) {
141
setLowProfile(
lightsOut
, true, false);
144
public void setLowProfile(final boolean
lightsOut
, final boolean animate, final boolean force) {
145
if (!force &&
lightsOut
== mLowProfile) return;
147
mLowProfile =
lightsOut
;
149
if (DEBUG) Slog.d(TAG, "setting lights " + (
lightsOut
?"out":"on"));
159
navButtons.setAlpha(
lightsOut
? 0f : 1f);
161
lowLights.setAlpha(
lightsOut
? 1f : 0f);
162
lowLights.setVisibility(
lightsOut
? View.VISIBLE : View.GONE);
165
.alpha(
lightsOut
? 0f : 1f
[
all
...]
PhoneStatusBar.java
[
all
...]
/frameworks/base/services/jni/
com_android_server_InputManager.cpp
674
bool
lightsOut
= mLocked.systemUiVisibility & ASYSTEM_UI_VISIBILITY_STATUS_BAR_HIDDEN;
675
controller->setInactivityTimeout(
lightsOut
[
all
...]
Completed in 457 milliseconds