Home
last modified time | relevance | path

Searched refs:minAlpha (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/fragment/
DMultiSourceMinAlphaController.kt76 val minAlpha = getMinAlpha() in applyAlphaToView() constant
77 view.visibility = if (minAlpha != 0f) View.VISIBLE else View.INVISIBLE in applyAlphaToView()
78 view.alpha = minAlpha in applyAlphaToView()
/frameworks/native/libs/gui/aidl/android/gui/
DTrustedPresentationThresholds.aidl20 float minAlpha = -1.0f;
/frameworks/base/core/java/android/window/
DTrustedPresentationThresholds.java105 @FloatRange(from = 0f, fromInclusive = false, to = 1f) float minAlpha, in TrustedPresentationThresholds()
108 this.mMinAlpha = minAlpha; in TrustedPresentationThresholds()
/frameworks/base/core/java/com/android/internal/graphics/
DColorUtils.java184 int minAlpha = 0; in binaryAlphaSearch() local
188 (maxAlpha - minAlpha) > MIN_ALPHA_SEARCH_PRECISION) { in binaryAlphaSearch()
189 final int testAlpha = (minAlpha + maxAlpha) / 2; in binaryAlphaSearch()
194 minAlpha = testAlpha; in binaryAlphaSearch()
/frameworks/native/services/surfaceflinger/tests/
DLayerTrustedPresentationListener_test.cpp50 thresholds.minAlpha = 1.0; in thresh()
156 thresholds.minAlpha = 0.8; in TEST_F()
/frameworks/base/core/java/android/view/
DSurfaceControl.java2748 @FloatRange(from = 0f, fromInclusive = false, to = 1f) float minAlpha, in TrustedPresentationThresholds()
2751 mMinAlpha = minAlpha; in TrustedPresentationThresholds()
/frameworks/base/core/jni/
Dandroid_view_SurfaceControl.cpp2025 thresholds.minAlpha = env->GetFloatField(trustedPresentationThresholds, in nativeSetTrustedPresentationCallback()
/frameworks/native/services/surfaceflinger/
DLayer.cpp458 if (alpha < thresholds.minAlpha) { in computeTrustedPresentationState()