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

1 2

  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
VUMeter.java 91 float pivotX = w/2;
96 float x0 = pivotX - l*cos;
98 canvas.drawLine(x0 + SHADOW_OFFSET, y0 + SHADOW_OFFSET, pivotX + SHADOW_OFFSET, pivotY + SHADOW_OFFSET, mShadow);
99 canvas.drawCircle(pivotX + SHADOW_OFFSET, pivotY + SHADOW_OFFSET, PIVOT_RADIUS, mShadow);
100 canvas.drawLine(x0, y0, pivotX, pivotY, mPaint);
101 canvas.drawCircle(pivotX, pivotY, PIVOT_RADIUS, mPaint);
  /cts/tests/tests/view/src/android/view/animation/cts/
RotateAnimationTest.java 137 final float pivotX = 0.2f;
139 final float actualPivotX = pivotX * animWindowParent.getWidth();
143 Animation.RELATIVE_TO_PARENT, pivotX, Animation.RELATIVE_TO_SELF, pivotY);
186 public MyRotateAnimation(float fromDegrees, float toDegrees, float pivotX, float pivotY) {
187 super(fromDegrees, toDegrees, pivotX, pivotY);
191 float pivotX, int pivotYType, float pivotY) {
192 super(fromDegrees, toDegrees, pivotXType, pivotX, pivotYType, pivotY);
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
RenderNode_Delegate.java 171 float pivotX = renderNode.getPivotX();
177 outMatrix.preRotate(rotation, pivotX, pivotY);
178 outMatrix.preScale(scaleX, scaleY, pivotX, pivotY);
244 /*package*/ static boolean nSetPivotX(long renderNode, float pivotX) {
247 delegate.mPivotX = pivotX;