HomeSort by relevance Sort by last modified time
    Searched refs:defaultMinimumForClamp (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 226 template<typename T> inline T defaultMinimumForClamp() { return std::numeric_limits<T>::min(); }
227 template<> inline float defaultMinimumForClamp() { return -std::numeric_limits<float>::max(); }
228 template<> inline double defaultMinimumForClamp() { return -std::numeric_limits<double>::max(); }
231 template<typename T> inline T clampTo(double value, T min = defaultMinimumForClamp<T>(), T max = defaultMaximumForClamp<T>())
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
AnimatedStyleBuilder.cpp 87 template<typename T> T animatableValueRoundClampTo(const AnimatableValue* value, T min = defaultMinimumForClamp<T>(), T max = defaultMaximumForClamp<T>())

Completed in 3699 milliseconds