Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/widget/
DDotsPageIndicator.java882 protected float thresholdValue; field in DotsPageIndicator.StartPredicate
884 public StartPredicate(float thresholdValue) { in StartPredicate() argument
885 this.thresholdValue = thresholdValue; in StartPredicate()
896 public RightwardStartPredicate(float thresholdValue) { in RightwardStartPredicate() argument
897 super(thresholdValue); in RightwardStartPredicate()
901 return currentValue > thresholdValue; in shouldStart()
910 public LeftwardStartPredicate(float thresholdValue) { in LeftwardStartPredicate() argument
911 super(thresholdValue); in LeftwardStartPredicate()
915 return currentValue < thresholdValue; in shouldStart()