Home
last modified time | relevance | path

Searched refs:thresholdValue (Results 1 – 5 of 5) sorted by relevance

/aosp12/packages/apps/Settings/src/com/android/settings/widget/
H A DDotsPageIndicator.java884 protected float thresholdValue; field in DotsPageIndicator.StartPredicate
886 public StartPredicate(float thresholdValue) { in StartPredicate() argument
887 this.thresholdValue = thresholdValue; in StartPredicate()
898 public RightwardStartPredicate(float thresholdValue) { in RightwardStartPredicate() argument
899 super(thresholdValue); in RightwardStartPredicate()
903 return currentValue > thresholdValue; in shouldStart()
912 public LeftwardStartPredicate(float thresholdValue) { in LeftwardStartPredicate() argument
913 super(thresholdValue); in LeftwardStartPredicate()
917 return currentValue < thresholdValue; in shouldStart()
/aosp12/frameworks/native/services/inputflinger/reader/mapper/
H A DJoystickInputMapper.cpp403 float thresholdValue) { in hasMovedNearerToValueWithinFilteredRange() argument
404 float newDistance = fabs(newValue - thresholdValue); in hasMovedNearerToValueWithinFilteredRange()
406 float oldDistance = fabs(currentValue - thresholdValue); in hasMovedNearerToValueWithinFilteredRange()
H A DJoystickInputMapper.h104 float currentValue, float thresholdValue);
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/util/sensors/
H A DThresholdSensorImpl.java294 Builder setThresholdValue(float thresholdValue) { in setThresholdValue() argument
295 mThresholdValue = thresholdValue; in setThresholdValue()
/aosp12/packages/modules/StatsD/statsd/tests/metrics/
H A DValueMetricProducer_test.cpp6918 int64_t thresholdValue = 15; in TEST() local
6921 metric.mutable_threshold()->set_gt_int(thresholdValue); in TEST()