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 208 template<typename T> inline T defaultMinimumForClamp() { return std::numeric_limits<T>::min(); }
209 template<> inline float defaultMinimumForClamp() { return -std::numeric_limits<float>::max(); }
210 template<> inline double defaultMinimumForClamp() { return -std::numeric_limits<double>::max(); }
213 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 86 template<typename T> T animatableValueRoundClampTo(const AnimatableValue* value, T min = defaultMinimumForClamp<T>(), T max = defaultMaximumForClamp<T>())

Completed in 46 milliseconds