Home
last modified time | relevance | path

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

/constraintlayout/constraintlayout-core/src/main/java/androidx/constraintlayout/core/dsl/
DOnSwipe.java39 private float mSpringStopThreshold = Float.NaN; field in OnSwipe
294 return mSpringStopThreshold; in getSpringStopThreshold()
305 mSpringStopThreshold = springStopThreshold; in setSpringStopThreshold()
385 if (!Float.isNaN(mSpringStopThreshold)) { in toString()
386 ret.append("stopThreshold:'").append(mSpringStopThreshold).append("',\n"); in toString()
/constraintlayout/constraintlayout/src/main/java/androidx/constraintlayout/motion/widget/
DOnSwipe.java39 private float mSpringStopThreshold = Float.NaN; field in OnSwipe
352 return mSpringStopThreshold; in getSpringStopThreshold()
364 mSpringStopThreshold = springStopThreshold; in setSpringStopThreshold()
DTouchResponse.java117 private float mSpringStopThreshold = Float.NaN; field in TouchResponse
158 mSpringStopThreshold = onSwipe.getSpringStopThreshold(); in TouchResponse()
236 mSpringStopThreshold = a.getFloat(attr, mSpringStopThreshold); in fill()
912 return mSpringStopThreshold; in getSpringStopThreshold()
/constraintlayout/constraintlayout-core/src/main/java/androidx/constraintlayout/core/state/
DTransition.java157 private float mSpringStopThreshold = 0.01f; field in Transition.OnSwipe
269 void setSpringStopThreshold(float mSpringStopThreshold) { in setSpringStopThreshold() argument
270 if (Float.isNaN(mSpringStopThreshold)) { in setSpringStopThreshold()
273 this.mSpringStopThreshold = mSpringStopThreshold; in setSpringStopThreshold()
366 mSpringStopThreshold, mSpringBoundary); in config()
391 System.out.println("mSpringStopThreshold = " + mSpringStopThreshold); in printInfo()