HomeSort by relevance Sort by last modified time
    Searched defs:setX (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/webkit/Source/WebCore/page/
WebKitPoint.h 49 void setX(float x) { m_x = x; }
  /external/webkit/Source/WebCore/platform/graphics/filters/
PointLightSource.cpp 46 paintingData.lightVector.setX(m_position.x() - x);
52 bool PointLightSource::setX(float x)
56 m_position.setX(x);
LightSource.cpp 51 bool LightSource::setX(float x)
54 return static_cast<SpotLightSource*>(this)->setX(x);
56 return static_cast<PointLightSource*>(this)->setX(x);
SpotLightSource.cpp 48 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)
120 m_position.setX(x);
144 m_direction.setX(pointsAtX);
  /external/skia/src/gpu/
GrGpuVertex.h 49 void setX(GrFixed x, GrFixed y) {
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/svg/
SVGPathSegLinetoHorizontal.h 38 void setX(float x)
SVGPathSegCurvetoCubicSmooth.h 41 void setX(float x)
SVGPathSegCurvetoQuadratic.h 41 void setX(float x)
SVGPathSegWithContext.h 80 void setX(float x)
SVGPathSegArc.h 44 void setX(float x)
SVGPathSegCurvetoCubic.h 43 void setX(float x)
  /libcore/benchmarks/src/benchmarks/regression/
PropertyAccessBenchmark.java 25 private Method setX;
32 setX = View.class.getDeclaredMethod("setX", float.class);
38 view.setX(0.1f);
51 view.setX(value);
64 setX.invoke(view, 0.1f);
71 setX.invoke(view, argsBox);
96 public void setX(float x) {
107 v.setX(f);
  /frameworks/rs/cpp/
Type.cpp 121 void Type::Builder::setX(uint32_t value) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
TimeLineGraphItem.java 80 public void setX(int x) {
  /external/webkit/Source/WebCore/platform/graphics/
FloatPoint.h 81 void setX(float x) { m_x = x; }
FloatPoint3D.h 61 void setX(float x) { m_x = x; }
FloatRect.h 98 void setX(float x) { m_location.setX(x); }
124 m_location.setX(m_location.x() - dx);
IntPoint.h 89 void setX(int x) { m_x = x; }
219 point.setX(x);
  /cts/tests/tests/animation/src/android/animation/cts/
ShapeHolder.java 44 public void setX(float value) {
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
ShapeHolder.java 44 public void setX(float value) {
CustomEvaluator.java 72 public void setX(float x) {
103 mBall.setX(xyHolder.getX());
146 shapeHolder.setX(x - 25f);
  /external/clang/test/Analysis/
derived-to-base.cpp 43 void setX() { x = 42; }
52 d.setX();
56 dv.setX();
60 dv2.setX();
78 void setX() { x = 42; }
85 d.setX();
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapCharacter.java 76 public void setX(int x) {
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector2f.java 601 public Vector2f setX(float x) {
  /external/skia/include/core/
SkPoint.h 29 void setX(int32_t x) { fX = x; }

Completed in 1358 milliseconds

1 2 3