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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegLinetoHorizontal.h 37 void setX(float x)
SVGGlyphRefElement.cpp 108 void SVGGlyphRefElement::setX(float x)
SVGPathSegCurvetoCubicSmooth.h 40 void setX(float x)
SVGPathSegCurvetoQuadratic.h 40 void setX(float x)
SVGPathSegWithContext.h 79 void setX(float x)
SVGPathSegArc.h 43 void setX(float x)
SVGPathSegCurvetoCubic.h 42 void setX(float x)
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMPoint.h 49 void setX(float x) { m_x = x; }
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
PointLightSource.cpp 45 paintingData.lightVector.setX(m_position.x() - x);
51 bool PointLightSource::setX(float x)
55 m_position.setX(x);
SpotLightSource.cpp 47 paintingData.directionVector.setX(m_direction.x() - m_position.x());
76 paintingData.lightVector.setX(m_position.x() - x);
84 paintingData.colorVector.setX(0.0f);
110 paintingData.colorVector.setX(paintingData.privateColorVector.x() * lightStrength);
115 bool SpotLightSource::setX(float x)
119 m_position.setX(x);
143 m_direction.setX(pointsAtX);
LightSource.h 78 virtual bool setX(float) { return false; }
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DirectoryView.java 60 setX((mWidth > 0) ? (mPosition * mWidth) : 0);
  /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);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
IntPoint.h 56 void setX(int x) { m_x = x; }
FloatPoint.h 70 void setX(float x) { m_x = x; }
FloatPoint3D.h 61 void setX(float x) { m_x = x; }
LayoutPoint.h 53 void setX(LayoutUnit x) { m_x = x; }
FloatRect.h 81 void setX(float x) { m_location.setX(x); }
104 setX(edge);
145 m_location.setX(m_location.x() - dx);
IntRect.h 76 void setX(int x) { m_location.setX(x); }
99 setX(edge);
139 m_location.setX(m_location.x() - dx);
LayoutRect.h 79 void setX(LayoutUnit x) { m_location.setX(x); }
112 setX(edge);
152 m_location.setX(m_location.x() - dx);
  /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) {
  /frameworks/rs/cpp/
Type.cpp 128 void Type::Builder::setX(uint32_t value) {
  /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);

Completed in 1031 milliseconds

1 2 3