Searched refs:setY (Results 1 - 25 of 146) sorted by relevance

123456

/external/v8/test/mjsunit/
H A Daccessors-on-global-object.js47 function setY(value) { y = value; } function
50 setY(i);
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DLightSource.cpp60 bool LightSource::setY(float y) function in class:WebCore::LightSource
63 return static_cast<SpotLightSource*>(this)->setY(y);
65 return static_cast<PointLightSource*>(this)->setY(y);
H A DPointLightSource.cpp47 paintingData.lightVector.setY(m_position.y() - y);
60 bool PointLightSource::setY(float y) function in class:WebCore::PointLightSource
64 m_position.setY(y);
H A DSpotLightSource.cpp49 paintingData.directionVector.setY(m_direction.y() - m_position.y());
78 paintingData.lightVector.setY(m_position.y() - y);
86 paintingData.colorVector.setY(0.0f);
112 paintingData.colorVector.setY(paintingData.privateColorVector.y() * lightStrength);
124 bool SpotLightSource::setY(float y) function in class:WebCore::SpotLightSource
128 m_position.setY(y);
152 m_direction.setY(pointsAtY);
H A DPointLightSource.h40 bool setY(float);
H A DDistantLightSource.cpp45 paintingData.lightVector.setY(sinf(azimuth) * cosf(elevation));
H A DLightSource.h80 bool setY(float);
H A DSpotLightSource.h41 bool setY(float);
H A DFELighting.cpp76 normalVector.setY(-(center << 1) - right + (bottom << 1) + bottomRight);
89 normalVector.setY(-left - (center << 1) - right + bottomLeft + (bottom << 1) + bottomRight);
100 normalVector.setY(-left - (center << 1) + bottomLeft + (bottom << 1));
114 normalVector.setY(-(top << 1) - topRight + (bottom << 1) + bottomRight);
130 normalVector.setY(-topLeft - (top << 1) - topRight + bottomLeft + (bottom << 1) + bottomRight);
144 normalVector.setY(-topLeft - (top << 1) + bottomLeft + (bottom << 1));
155 normalVector.setY(-(top << 1) - topRight + (center << 1) + right);
168 normalVector.setY(-topLeft - (top << 1) - topRight + left + (center << 1) + right);
179 normalVector.setY(-topLeft - (top << 1) + left + (center << 1));
204 normalVector.setY(factor
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatPoint.cpp101 intersection.setY(dSlope * intersection.x() + dOffset);
106 intersection.setY(pSlope * intersection.x() + pOffset);
112 intersection.setY(pSlope * intersection.x() + pOffset);
H A DIntRect.cpp73 m_location.setY(t);
94 m_location.setY(t);
115 m_location.setY(top);
123 m_location.setY((int)(y() * s));
H A DIntRect.h100 void setY(int y) { m_location.setY(y); } function in class:WebCore::IntRect
127 setY(edge);
161 m_location.setY(m_location.y() - dy);
/external/webkit/Source/WebCore/page/
H A DWebKitPoint.h50 void setY(float y) { m_y = y; } function in class:WebCore::WebKitPoint
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DFloatRectQt.cpp56 normalizedRect.setY(y() + height());
/external/webkit/Source/WebKit/android/jni/
H A DWebCoreViewBridge.h84 m_bounds.setY(y);
86 m_visibleBounds.setY(y);
/external/webkit/Source/WebCore/platform/mac/
H A DPlatformScreenMac.mm91 userRect.setY(NSMaxY([screenForWindow(destination) frame]) - (userRect.y() + userRect.height())); // flip
102 deviceRect.setY(NSMaxY([screenForWindow(source) frame]) - (deviceRect.y() + deviceRect.height())); // flip
/external/jmonkeyengine/engine/src/test/jme3test/audio/
H A DTestReverb.java68 v.setY(FastMath.nextRandomFloat());
/external/webkit/Source/WebCore/svg/
H A DSVGPathSegLinetoVertical.h38 void setY(float y) function in class:WebCore::SVGPathSegLinetoVertical
H A DSVGPathSegWithContext.h87 void setY(float y) function in class:WebCore::SVGPathSegSingleCoordinate
H A DPatternAttributes.h72 void setY(const SVGLength& value) function in struct:WebCore::PatternAttributes
H A DSVGPathSegCurvetoCubicSmooth.h48 void setY(float y) function in class:WebCore::SVGPathSegCurvetoCubicSmooth
H A DSVGPathSegCurvetoQuadratic.h48 void setY(float y) function in class:WebCore::SVGPathSegCurvetoQuadratic
/external/webkit/Source/WebCore/dom/
H A DMouseRelatedEvent.cpp101 adjustedPageLocation.setY(lroundf(adjustedPageLocation.y() / pageZoom));
103 scrollPosition.setY(scrollPosition.y() / pageZoom);
/external/webkit/Source/WebCore/rendering/
H A DRenderSlider.cpp119 thumbRect.setY(contentRect.y() + static_cast<int>(nextafter((contentRect.height() - thumbRect.height()) + 1, 0) * (1 - fraction)));
122 thumbRect.setY(contentRect.y() + (contentRect.height() - thumbRect.height()) / 2);
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResourceFilterPrimitive.cpp94 subregion.setY(targetBoundingBox.y() + subregionBoundingBox.y() * targetBoundingBox.height());
106 subregion.setY(uniteRect.y());

Completed in 428 milliseconds

123456