Searched refs:maxDistance (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/platform/audio/
H A DDistance.h59 void setMaxDistance(double maxDistance) { m_maxDistance = maxDistance; } argument
63 double maxDistance() const { return m_maxDistance; } function in class:WebCore::DistanceEffect
/external/webkit/Source/WebCore/page/
H A DSpatialNavigation.h41 inline long long maxDistance() function in namespace:WebCore
107 , distance(maxDistance())
108 , parentDistance(maxDistance())
H A DSpatialNavigation.cpp62 , distance(maxDistance())
63 , parentDistance(maxDistance())
H A DFocusController.cpp453 if (candidate.distance == maxDistance())
/external/webkit/Source/WebCore/webaudio/
H A DAudioPannerNode.h96 float maxDistance() { return static_cast<float>(m_distanceEffect.maxDistance()); } function in class:WebCore::AudioPannerNode
97 void setMaxDistance(float maxDistance) { m_distanceEffect.setMaxDistance(maxDistance); } argument
H A DAudioPannerNode.idl47 attribute float maxDistance;
/external/webkit/Tools/DumpRenderTree/win/
H A DImageDiffCairo.cpp98 static inline void normalizeBuffer(float maxDistance, unsigned char* buffer, size_t length) argument
100 if (maxDistance >= 1)
104 buffer[p] /= maxDistance;
121 float maxDistance = 0; local
136 if (distance > maxDistance)
137 maxDistance = distance;
157 normalizeBuffer(maxDistance, reinterpret_cast<unsigned char*>(diffBuffer), height * width);
/external/webkit/Tools/DumpRenderTree/cg/
H A DImageDiffCG.cpp112 float maxDistance = 0.0f; local
129 if (distance > maxDistance)
130 maxDistance = distance;
147 if (maxDistance < 1.0f) {
150 diff[p] = diff[p] / maxDistance;
/external/replicaisland/src/com/replica/replicaisland/
H A DSphereCollisionVolume.java118 final float maxDistance = mRadius + otherRadius;
120 final float maxDistance2 = (maxDistance * maxDistance);
/external/webkit/Tools/DumpRenderTree/qt/
H A DImageDiff.cpp96 qreal maxDistance = 0; local
112 maxDistance = qMax(maxDistance, distance);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DImageDiff.cpp105 float maxDistance = 0; local
127 maxDistance = max<float>(maxDistance, distance);
/external/webkit/Source/WebCore/css/
H A DCSSGradientValue.cpp693 float maxDistance = topLeftDistance; local
694 if (topRightDistance > maxDistance) {
695 maxDistance = topRightDistance;
699 if (bottomLeftDistance > maxDistance) {
700 maxDistance = bottomLeftDistance;
704 if (bottomRightDistance > maxDistance) {
705 maxDistance = bottomRightDistance;
708 return maxDistance;

Completed in 169 milliseconds