getValue          102 Source/core/animation/CompositorAnimationsTestHelper.h     MOCK_CONST_METHOD1_T(getValue, float(double)); // Only on WebFloatAnimationCurve, but can't hurt to have here.
getValue          266 Source/core/css/CSSPrimitiveValue.h             return getValue<T>();
getValue          268 Source/core/css/CSSPrimitiveValue.h             return getValue<T>() / 1000;
getValue          270 Source/core/css/CSSPrimitiveValue.h             return getValue<T>();
getValue          272 Source/core/css/CSSPrimitiveValue.h             return getValue<T>() * 1000;
getValue          296 Source/core/css/CSSPrimitiveValue.h     float getFloatValue(unsigned short unitType, ExceptionState& exceptionState) const { return getValue<float>(unitType, exceptionState); }
getValue          297 Source/core/css/CSSPrimitiveValue.h     float getFloatValue(unsigned short unitType) const { return getValue<float>(unitType); }
getValue          298 Source/core/css/CSSPrimitiveValue.h     float getFloatValue() const { return getValue<float>(); }
getValue          300 Source/core/css/CSSPrimitiveValue.h     int getIntValue(unsigned short unitType, ExceptionState& exceptionState) const { return getValue<int>(unitType, exceptionState); }
getValue          301 Source/core/css/CSSPrimitiveValue.h     int getIntValue(unsigned short unitType) const { return getValue<int>(unitType); }
getValue          302 Source/core/css/CSSPrimitiveValue.h     int getIntValue() const { return getValue<int>(); }
getValue          304 Source/core/css/CSSPrimitiveValue.h     template<typename T> inline T getValue(unsigned short unitType, ExceptionState& exceptionState) const { return clampTo<T>(getDoubleValue(unitType, exceptionState)); }
getValue          305 Source/core/css/CSSPrimitiveValue.h     template<typename T> inline T getValue(unsigned short unitType) const { return clampTo<T>(getDoubleValue(unitType)); }
getValue          306 Source/core/css/CSSPrimitiveValue.h     template<typename T> inline T getValue() const { return clampTo<T>(getDoubleValue()); }
getValue         3081 Source/web/WebViewImpl.cpp     m_currentDragData = webDragData.getValue();
getValue          108 public/platform/WebDragData.h     WebCore::DataObject* getValue() const;
getValue           47 public/platform/WebFloatAnimationCurve.h     virtual float getValue(double time) const = 0;