Searched defs:pivotY (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/core/java/android/view/animation/
H A DRotateAnimation.java75 * Default pivotX/pivotY point is (0,0).
100 * @param pivotY The Y coordinate of the point about which the object is
104 public RotateAnimation(float fromDegrees, float toDegrees, float pivotX, float pivotY) { argument
111 mPivotYValue = pivotY;
H A DScaleAnimation.java167 * @param pivotY The Y coordinate of the point about which the object is
172 float pivotX, float pivotY) {
182 mPivotYValue = pivotY;
171 ScaleAnimation(float fromX, float toX, float fromY, float toY, float pivotX, float pivotY) argument
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRotateDrawable.java265 * @param pivotY Y position around which to rotate
269 public void setPivotY(float pivotY) { argument
270 if (mState.mPivotY != pivotY) {
271 mState.mPivotY = pivotY;
H A DVectorDrawable.java117 * <dt><code>android:pivotY</code></dt>
205 * android:pivotY=&quot;300.0&quot;
1068 put("pivotY", PIVOT_Y_INDEX);
1149 new FloatProperty<VGroup> ("pivotY") {
1182 put("pivotY", PIVOT_Y);
1300 float pivotY = a.getFloat(R.styleable.VectorDrawableGroup_pivotY,
1316 nUpdateGroupProperties(mNativePtr, rotate, pivotX, pivotY, scaleX, scaleY,
1434 public void setPivotY(float pivotY) { argument
1436 nSetPivotY(mNativePtr, pivotY);
2215 float pivotY, floa
2214 nUpdateGroupProperties(long groupPtr, float rotate, float pivotX, float pivotY, float scaleX, float scaleY, float translateX, float translateY) argument
2238 nSetPivotY(long groupPtr, float pivotY) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DRenderNode_Delegate.java179 float pivotY = renderNode.getPivotY();
184 outMatrix.preRotate(rotation, pivotX, pivotY);
185 outMatrix.preScale(scaleX, scaleY, pivotX, pivotY);
275 /*package*/ static boolean nSetPivotY(long renderNode, float pivotY) { argument
278 delegate.mPivotY = pivotY;
/frameworks/base/core/jni/
H A Dandroid_graphics_drawable_VectorDrawable.cpp172 jfloat pivotY, jfloat scaleX, jfloat scaleY, jfloat translateX, jfloat translateY) {
174 group->mutateStagingProperties()->updateProperties(rotate, pivotX, pivotY, scaleX, scaleY,
221 static void setPivotY(JNIEnv*, jobject, jlong groupPtr, jfloat pivotY) { argument
223 group->mutateStagingProperties()->setPivotY(pivotY);
171 updateGroupProperties(JNIEnv*, jobject, jlong groupPtr, jfloat rotate, jfloat pivotX, jfloat pivotY, jfloat scaleX, jfloat scaleY, jfloat translateX, jfloat translateY) argument
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMagnificationController.java423 * @param pivotY the screen-relative Y coordinate around which to scale
430 public boolean setScale(float scale, float pivotX, float pivotY, boolean animate, int id) { argument
445 final float normPivotY = (pivotY - spec.offsetY) / oldScale;
/frameworks/base/core/java/android/view/
H A DRenderNode.java648 * @param pivotY The pivot value of the display list on the Y axis, in pixels
653 public boolean setPivotY(float pivotY) { argument
654 return nSetPivotY(mNativeRenderNode, pivotY);
882 private static native boolean nSetPivotY(long renderNode, float pivotY); argument
H A DView.java14023 * explicitly set pivotX and pivotY values.
14064 * explicitly set pivotX and pivotY values.
14066 * @param pivotY The y location of the pivot point.
14074 public void setPivotY(float pivotY) { argument
14075 if (!mRenderNode.isPivotExplicitlySet() || pivotY != getPivotY()) {
14077 mRenderNode.setPivotY(pivotY);
26198 stream.addProperty("drawing:pivotY", getPivotY());
/frameworks/base/libs/hwui/
H A DRenderProperties.h380 bool setPivotY(float pivotY) { argument
381 if (RP_SET(mPrimitiveFields.mPivotY, pivotY)
H A DVectorDrawable.h412 float pivotY = 0; member in struct:android::uirenderer::VectorDrawable::Group::GroupProperties::PrimitiveFields
435 return mPrimitiveFields.pivotY;
437 void setPivotY(float pivotY) { argument
438 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(pivotY, pivotY);
464 void updateProperties(float rotate, float pivotX, float pivotY, argument
468 mPrimitiveFields.pivotY = pivotY;
483 pivotY, member in class:android::uirenderer::VectorDrawable::Group::GroupProperties::Property
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java123 * <dt><code>android:pivotY</code></dt>
1450 public void setPivotY(float pivotY) { argument
1451 if (pivotY != mPivotY) {
1452 mPivotY = pivotY;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java283 float pivotY, float scaleX, float scaleY, float translateX, float translateY) {
288 group.setPivotY(pivotY);
345 static void nSetPivotY(long groupPtr, float pivotY) { argument
347 group.setPivotY(pivotY);
910 private void setPivotY(float pivotY) { argument
911 if (pivotY != mPivotY) {
912 mPivotY = pivotY;
282 nUpdateGroupProperties(long groupPtr, float rotate, float pivotX, float pivotY, float scaleX, float scaleY, float translateX, float translateY) argument
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...

Completed in 620 milliseconds