/external/webkit/Tools/DumpRenderTree/win/ |
D | ImageDiffCairo.cpp | 98 static inline void normalizeBuffer(float maxDistance, unsigned char* buffer, size_t length) in normalizeBuffer() argument 100 if (maxDistance >= 1) in normalizeBuffer() 104 buffer[p] /= maxDistance; in normalizeBuffer() 121 float maxDistance = 0; in createDifferenceImage() local 136 if (distance > maxDistance) in createDifferenceImage() 137 maxDistance = distance; in createDifferenceImage() 157 normalizeBuffer(maxDistance, reinterpret_cast<unsigned char*>(diffBuffer), height * width); in createDifferenceImage()
|
/external/webkit/Source/WebCore/platform/audio/ |
D | Distance.h | 59 void setMaxDistance(double maxDistance) { m_maxDistance = maxDistance; } in setMaxDistance() argument 63 double maxDistance() const { return m_maxDistance; } in maxDistance() function
|
/external/webkit/Source/WebCore/webaudio/ |
D | AudioPannerNode.h | 96 float maxDistance() { return static_cast<float>(m_distanceEffect.maxDistance()); } in maxDistance() function 97 void setMaxDistance(float maxDistance) { m_distanceEffect.setMaxDistance(maxDistance); } in setMaxDistance() argument
|
D | AudioPannerNode.idl | 47 attribute float maxDistance;
|
/external/jmonkeyengine/engine/src/core/com/jme3/audio/ |
D | AudioNode.java | 77 protected float maxDistance = 200; // 200 meters field in AudioNode 538 return maxDistance; in getMaxDistance() 556 public void setMaxDistance(float maxDistance) { in setMaxDistance() argument 557 if (maxDistance < 0) { in setMaxDistance() 561 this.maxDistance = maxDistance; in setMaxDistance() 744 oc.write(maxDistance, "max_distance", 20); in write() 778 maxDistance = ic.readFloat("max_distance", 20); in read()
|
/external/webkit/Source/WebCore/page/ |
D | SpatialNavigation.h | 41 inline long long maxDistance() in maxDistance() function 107 , distance(maxDistance()) in FocusCandidate() 108 , parentDistance(maxDistance()) in FocusCandidate()
|
D | SpatialNavigation.cpp | 62 , distance(maxDistance()) in FocusCandidate() 63 , parentDistance(maxDistance()) in FocusCandidate()
|
D | FocusController.cpp | 453 if (candidate.distance == maxDistance()) in updateFocusCandidateIfNeeded()
|
/external/webkit/Tools/DumpRenderTree/cg/ |
D | ImageDiffCG.cpp | 112 float maxDistance = 0.0f; in createDifferenceImage() local 129 if (distance > maxDistance) in createDifferenceImage() 130 maxDistance = distance; in createDifferenceImage() 147 if (maxDistance < 1.0f) { in createDifferenceImage() 150 diff[p] = diff[p] / maxDistance; in createDifferenceImage()
|
/external/jmonkeyengine/engine/src/core/com/jme3/input/ |
D | ChaseCamera.java | 58 protected float maxDistance = 40.0f; field in ChaseCamera 294 if (targetDistance > maxDistance) { in zoomCamera() 295 targetDistance = maxDistance; in zoomCamera() 486 return maxDistance; in getMaxDistance() 493 public void setMaxDistance(float maxDistance) { in setMaxDistance() argument 494 this.maxDistance = maxDistance; in setMaxDistance() 563 capsule.write(maxDistance, "maxDistance", 40); in write() 574 maxDistance = ic.readFloat("maxDistance", 40); in read()
|
/external/webkit/Tools/DumpRenderTree/qt/ |
D | ImageDiff.cpp | 96 qreal maxDistance = 0; in main() local 112 maxDistance = qMax(maxDistance, distance); in main()
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | SphereCollisionVolume.java | 118 final float maxDistance = mRadius + otherRadius; in intersects() local 120 final float maxDistance2 = (maxDistance * maxDistance); in intersects()
|
/external/webkit/Tools/DumpRenderTree/gtk/ |
D | ImageDiff.cpp | 105 float maxDistance = 0; in calculateDifference() local 127 maxDistance = max<float>(maxDistance, distance); in calculateDifference()
|
/external/webkit/Source/WebCore/css/ |
D | CSSGradientValue.cpp | 693 float maxDistance = topLeftDistance; in distanceToFarthestCorner() local 694 if (topRightDistance > maxDistance) { in distanceToFarthestCorner() 695 maxDistance = topRightDistance; in distanceToFarthestCorner() 699 if (bottomLeftDistance > maxDistance) { in distanceToFarthestCorner() 700 maxDistance = bottomLeftDistance; in distanceToFarthestCorner() 704 if (bottomRightDistance > maxDistance) { in distanceToFarthestCorner() 705 maxDistance = bottomRightDistance; in distanceToFarthestCorner() 708 return maxDistance; in distanceToFarthestCorner()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-05-24 | 39806 (WebCore::maxDistance):
|
D | ChangeLog-2010-12-06 | 39903 (WebCore::AudioPannerNode::maxDistance): 62578 (WebCore::DistanceEffect::maxDistance):
|