HomeSort by relevance Sort by last modified time
    Searched defs:maxDistance (Results 1 - 13 of 13) sorted by null

  /external/webkit/Source/WebCore/platform/audio/
Distance.h 59 void setMaxDistance(double maxDistance) { m_maxDistance = maxDistance; }
63 double maxDistance() const { return m_maxDistance; }
  /external/webkit/Source/WebCore/page/
SpatialNavigation.h 41 inline long long maxDistance()
107 , distance(maxDistance())
108 , parentDistance(maxDistance())
  /external/webkit/Tools/DumpRenderTree/qt/
ImageDiff.cpp 96 qreal maxDistance = 0;
112 maxDistance = qMax(maxDistance, distance);
  /system/media/wilhelm/src/itf/
I3DSource.c 56 SLmillimeter minDistance, SLmillimeter maxDistance)
61 (minDistance <= maxDistance) && (maxDistance <= SL_MILLIMETER_MAX))) {
67 thiz->mMaxDistance = maxDistance;
86 SLmillimeter maxDistance = thiz->mMaxDistance;
89 *pMaxDistance = maxDistance;
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
FlipView.java 76 float maxDistance = (flipHorizontal ? getWidth() : getHeight()) * 0.35f;
79 if (Math.abs(moveDistance) > maxDistance) {
80 moveDistance = (moveDistance > 0) ? maxDistance : -maxDistance;
88 return (moveDistance / maxDistance) * maxFlipSpan;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
MoveHandler.java 106 int maxDistance = BaseLayoutRule.getMaxMatchDistance();
109 if (margin > maxDistance) {
116 if (margin > maxDistance) {
131 int maxDistance = BaseLayoutRule.getMaxMatchDistance();
134 if (margin > maxDistance) {
141 if (margin > maxDistance) {
148 if (margin > maxDistance) {
ResizeHandler.java 99 int maxDistance = BaseLayoutRule.getMaxMatchDistance();
102 if (margin > maxDistance) {
110 if (margin > maxDistance) {
122 int maxDistance = BaseLayoutRule.getMaxMatchDistance();
125 if (margin > maxDistance) {
133 if (margin > maxDistance) {
  /external/webkit/Source/WebCore/webaudio/
AudioPannerNode.h 96 float maxDistance() { return static_cast<float>(m_distanceEffect.maxDistance()); }
97 void setMaxDistance(float maxDistance) { m_distanceEffect.setMaxDistance(maxDistance); }
  /external/webkit/Tools/DumpRenderTree/cg/
ImageDiffCG.cpp 112 float maxDistance = 0.0f;
129 if (distance > maxDistance)
130 maxDistance = distance;
147 if (maxDistance < 1.0f) {
150 diff[p] = diff[p] / maxDistance;
  /external/webkit/Tools/DumpRenderTree/gtk/
ImageDiff.cpp 105 float maxDistance = 0;
127 maxDistance = max<float>(maxDistance, distance);
  /external/webkit/Tools/DumpRenderTree/win/
ImageDiffCairo.cpp 98 static inline void normalizeBuffer(float maxDistance, unsigned char* buffer, size_t length)
100 if (maxDistance >= 1)
104 buffer[p] /= maxDistance;
121 float maxDistance = 0;
136 if (distance > maxDistance)
137 maxDistance = distance;
157 normalizeBuffer(maxDistance, reinterpret_cast<unsigned char*>(diffBuffer), height * width);
  /external/webkit/Source/WebCore/css/
CSSGradientValue.cpp 693 float maxDistance = topLeftDistance;
694 if (topRightDistance > maxDistance) {
695 maxDistance = topRightDistance;
699 if (bottomLeftDistance > maxDistance) {
700 maxDistance = bottomLeftDistance;
704 if (bottomRightDistance > maxDistance) {
705 maxDistance = bottomRightDistance;
708 return maxDistance;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java     [all...]

Completed in 357 milliseconds