Searched refs:setX (Results 1 - 25 of 138) sorted by relevance

123456

/external/clang/test/Analysis/
H A Dderived-to-base.cpp42 void setX() { x = 42; } function in class:VirtualBaseClasses::C
51 d.setX();
55 dv.setX();
59 dv2.setX();
77 void setX() { x = 42; } function in class:VirtualBaseClasses::CI
84 d.setX();
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DLightSource.cpp51 bool LightSource::setX(float x) function in class:WebCore::LightSource
54 return static_cast<SpotLightSource*>(this)->setX(x);
56 return static_cast<PointLightSource*>(this)->setX(x);
H A DPointLightSource.cpp46 paintingData.lightVector.setX(m_position.x() - x);
52 bool PointLightSource::setX(float x) function in class:WebCore::PointLightSource
56 m_position.setX(x);
H A DSpotLightSource.cpp48 paintingData.directionVector.setX(m_direction.x() - m_position.x());
77 paintingData.lightVector.setX(m_position.x() - x);
85 paintingData.colorVector.setX(0.0f);
111 paintingData.colorVector.setX(paintingData.privateColorVector.x() * lightStrength);
116 bool SpotLightSource::setX(float x) function in class:WebCore::SpotLightSource
120 m_position.setX(x);
144 m_direction.setX(pointsAtX);
H A DPointLightSource.h39 bool setX(float);
H A DDistantLightSource.cpp44 paintingData.lightVector.setX(cosf(azimuth) * cosf(elevation));
H A DLightSource.h79 bool setX(float);
H A DSpotLightSource.h40 bool setX(float);
H A DFELighting.cpp75 normalVector.setX(-(center << 1) + (right << 1) - bottom + bottomRight);
88 normalVector.setX(-(left << 1) + (right << 1) - bottomLeft + bottomRight);
99 normalVector.setX(-(left << 1) + (center << 1) - bottomLeft + bottom);
113 normalVector.setX(-top + topRight - (center << 1) + (right << 1) - bottom + bottomRight);
129 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1) - bottomLeft + bottomRight);
143 normalVector.setX(-topLeft + top - (left << 1) + (center << 1) - bottomLeft + bottom);
154 normalVector.setX(-top + topRight - (center << 1) + (right << 1));
167 normalVector.setX(-topLeft + topRight - (left << 1) + (right << 1));
178 normalVector.setX(-topLeft + top - (left << 1) + (center << 1));
203 normalVector.setX(factor
[all...]
/external/skia/src/gpu/
H A DGrGpuVertex.h49 void setX(GrFixed x, GrFixed y) { function in struct:GrGpuTextVertex
88 ((GrGpuTextVertex*)(v + 0*stride))->setX(l, t);
89 ((GrGpuTextVertex*)(v + 1*stride))->setX(l, b);
90 ((GrGpuTextVertex*)(v + 2*stride))->setX(r, b);
91 ((GrGpuTextVertex*)(v + 3*stride))->setX(r, t);
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatPoint.cpp100 intersection.setX(p1.x());
105 intersection.setX(d1.x());
111 intersection.setX((dOffset - pOffset) / (pSlope - dSlope));
H A DIntRect.cpp72 m_location.setX(l);
93 m_location.setX(l);
114 m_location.setX(left);
122 m_location.setX((int)(x() * s));
H A DIntRect.h99 void setX(int x) { m_location.setX(x); } function in class:WebCore::IntRect
116 setX(edge);
156 m_location.setX(m_location.x() - dx);
/external/webkit/Source/WebCore/page/
H A DWebKitPoint.h49 void setX(float x) { m_x = x; } function in class:WebCore::WebKitPoint
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DFloatRectQt.cpp52 normalizedRect.setX(x() + width());
/external/webkit/Source/WebKit/android/jni/
H A DWebCoreViewBridge.h83 m_bounds.setX(x);
85 m_visibleBounds.setX(x);
/external/jmonkeyengine/engine/src/test/jme3test/audio/
H A DTestReverb.java67 v.setX(FastMath.nextRandomFloat());
/external/webkit/Source/WebCore/svg/
H A DSVGPathSegLinetoHorizontal.h38 void setX(float x) function in class:WebCore::SVGPathSegLinetoHorizontal
H A DSVGPathSegWithContext.h80 void setX(float x) function in class:WebCore::SVGPathSegSingleCoordinate
H A DPatternAttributes.h66 void setX(const SVGLength& value) function in struct:WebCore::PatternAttributes
H A DSVGPathSegCurvetoCubicSmooth.h41 void setX(float x) function in class:WebCore::SVGPathSegCurvetoCubicSmooth
H A DSVGPathSegCurvetoQuadratic.h41 void setX(float x) function in class:WebCore::SVGPathSegCurvetoQuadratic
/external/webkit/Source/WebCore/dom/
H A DMouseRelatedEvent.cpp100 adjustedPageLocation.setX(lroundf(adjustedPageLocation.x() / pageZoom));
102 scrollPosition.setX(scrollPosition.x() / pageZoom);
/external/webkit/Source/WebCore/rendering/
H A DRenderSlider.cpp118 thumbRect.setX(contentRect.x() + (contentRect.width() - thumbRect.width()) / 2);
121 thumbRect.setX(contentRect.x() + static_cast<int>(nextafter((contentRect.width() - thumbRect.width()) + 1, 0) * fraction));
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResourceFilterPrimitive.cpp91 subregion.setX(targetBoundingBox.x() + subregionBoundingBox.x() * targetBoundingBox.width());
103 subregion.setX(uniteRect.x());

Completed in 7866 milliseconds

123456