HomeSort by relevance Sort by last modified time
    Searched defs:lowThreshold (Results 1 - 5 of 5) sorted by null

  /frameworks/native/include/input/
VelocityControl.h 45 float lowThreshold;
48 // The difference between highThreshold and lowThreshold controls
52 // Must be a non-negative value greater than or equal to lowThreshold.
65 scale(1.0f), lowThreshold(0.0f), highThreshold(0.0f), acceleration(1.0f) {
68 VelocityControlParameters(float scale, float lowThreshold,
70 scale(scale), lowThreshold(lowThreshold),
  /frameworks/support/dynamic-animation/tests/src/android/support/dynamicanimation/tests/
FlingTests.java 178 float lowThreshold = 5f;
193 animLowThreshold.setMinimumVisibleChange(lowThreshold);
218 assertEquals(lowThreshold, animLowThreshold.getMinimumVisibleChange(), 0f);
  /frameworks/base/services/core/java/com/android/server/pm/
BackgroundDexOptService.java 147 final long lowThreshold = StorageManager.from(context).getStorageLowBytes(mDataDir);
148 if (lowThreshold == 0) {
152 return lowThreshold;
176 final long lowThreshold = getLowStorageThreshold(this);
195 if (usableSpace < lowThreshold) {
OtaDexoptService.java 223 long lowThreshold = StorageManager.from(mContext).getStorageLowBytes(dataDir);
224 if (lowThreshold == 0) {
227 return lowThreshold;
237 long lowThreshold = getMainLowSpaceThreshold();
242 return usableSpace - lowThreshold;
PackageManagerService.java     [all...]

Completed in 314 milliseconds