Searched defs:centerX (Results 1 - 22 of 22) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewAnimationUtils.java51 * public static Animator createRevealWithDelay(View view, int centerX, int centerY, float startRadius, float endRadius) {
52 * Animator delayAnimator = ViewAnimationUtils.createCircularReveal(view, centerX, centerY, startRadius, startRadius);
54 * Animator revealAnimator = ViewAnimationUtils.createCircularReveal(view, centerX, centerY, startRadius, endRadius);
62 * @param centerX The x coordinate of the center of the animating circle, relative to
70 int centerX, int centerY, float startRadius, float endRadius) {
71 return new RevealAnimator(view, centerX, centerY, startRadius, endRadius);
69 createCircularReveal(View view, int centerX, int centerY, float startRadius, float endRadius) argument
/frameworks/base/core/java/android/gesture/
H A DOrientedBoundingBox.java33 public final float centerX; field in class:OrientedBoundingBox
40 centerX = cx;
62 matrix.postTranslate(centerX, centerY);
/frameworks/native/include/input/
H A DVirtualKeyMap.h36 int32_t centerX; member in struct:android::VirtualKeyDefinition
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTransform3dActivity.java57 final float centerX = getWidth() / 2.0f - mBitmap1.getWidth() / 2.0f;
63 rotate(centerX, centerY, camera, matrix, 32.0f);
64 drawBitmap(canvas, centerX, centerY, 0.0f, matrix);
66 rotate(centerX, centerY, camera, matrix, 12.0f);
67 drawBitmap(canvas, centerX, centerY, -mBitmap1.getWidth(), matrix);
69 rotate(centerX, centerY, camera, matrix, 52.0f);
70 drawBitmap(canvas, centerX, centerY, mBitmap1.getWidth(), matrix);
72 rotate(centerX, centerY, camera, matrix, 122.0f);
73 drawBitmap(canvas, centerX, centerY, mBitmap1.getWidth() * 2.0f, matrix);
77 private void drawBitmap(Canvas canvas, float centerX, floa argument
86 rotate(float centerX, float centerY, Camera camera, Matrix matrix, float angle) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DRadialGradient.java44 @param centerX The x-coordinate of the center of the radius
54 public RadialGradient(float centerX, float centerY, float radius, argument
66 mX = centerX;
72 init(nativeCreate1(centerX, centerY, radius, colors, stops, tileMode.nativeInt));
76 @param centerX The x-coordinate of the center of the radius
83 public RadialGradient(float centerX, float centerY, float radius, argument
89 mX = centerX;
95 init(nativeCreate2(centerX, centerY, radius, centerColor, edgeColor, tileMode.nativeInt));
H A DRect.java221 public final int centerX() { method in class:Rect
H A DRectF.java168 public final float centerX() { method in class:RectF
/frameworks/base/core/jni/
H A Dandroid_view_RenderNodeAnimator.cpp136 jint centerX, jint centerY, jfloat startRadius, jfloat endRadius) {
137 BaseRenderNodeAnimator* animator = new RevealAnimator(centerX, centerY, startRadius, endRadius);
135 createRevealAnimator(JNIEnv* env, jobject clazz, jint centerX, jint centerY, jfloat startRadius, jfloat endRadius) argument
/frameworks/base/libs/hwui/
H A DAnimator.cpp449 RevealAnimator::RevealAnimator(int centerX, int centerY, argument
452 , mCenterX(centerX)
/frameworks/base/opengl/java/android/opengl/
H A DGLU.java64 * @param centerX center of view X
72 float centerX, float centerY, float centerZ, float upX, float upY,
77 Matrix.setLookAtM(scratch, 0, eyeX, eyeY, eyeZ, centerX, centerY, centerZ,
71 gluLookAt(GL10 gl, float eyeX, float eyeY, float eyeZ, float centerX, float centerY, float centerZ, float upX, float upY, float upZ) argument
H A DMatrix.java690 * @param centerX center of view X
699 float centerX, float centerY, float centerZ, float upX, float upY,
705 float fx = centerX - eyeX;
697 setLookAtM(float[] rm, int rmOffset, float eyeX, float eyeY, float eyeZ, float centerX, float centerY, float centerZ, float upX, float upY, float upZ) argument
/frameworks/native/opengl/tests/gl_basic/
H A Dgl_basic.cpp39 float centerX, float centerY, float centerZ, float upX, float upY,
45 float fx = centerX - eyeX;
38 gluLookAt(float eyeX, float eyeY, float eyeZ, float centerX, float centerY, float centerZ, float upX, float upY, float upZ) argument
/frameworks/native/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp25 float centerX, float centerY, float centerZ, float upX, float upY,
31 float fx = centerX - eyeX;
24 gluLookAt(float eyeX, float eyeY, float eyeZ, float centerX, float centerY, float centerZ, float upX, float upY, float upZ) argument
/frameworks/native/opengl/tests/tritex/
H A Dtritex.cpp36 float centerX, float centerY, float centerZ, float upX, float upY,
42 float fx = centerX - eyeX;
35 gluLookAt(float eyeX, float eyeY, float eyeZ, float centerX, float centerY, float centerZ, float upX, float upY, float upZ) argument
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageView.java65 public int centerX, centerY; field in class:TiledImageView.ImageRendererWrapper
159 mRenderer.centerX = source != null ? source.getImageWidth() / 2 : 0;
275 mRenderer.centerX = swap ? cy : cx;
305 mRenderer.image.setPosition(mRenderer.centerX, mRenderer.centerY,
H A DTiledImageRenderer.java240 public void setPosition(int centerX, int centerY, float scale) { argument
241 if (mCenterX == centerX && mCenterY == centerY
245 mCenterX = centerX;
430 int centerX = mViewWidth / 2, centerY = mViewHeight / 2;
431 canvas.translate(centerX, centerY);
433 canvas.translate(-centerX, -centerY);
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityService.java375 float scale, float centerX, float centerY);
689 float centerX, float centerY) {
692 region, scale, centerX, centerY);
812 final float centerX, final float centerY) {
835 region, scale, centerX, centerY);
840 listener.onMagnificationChanged(this, region, scale, centerX, centerY);
1028 * @param centerX the unscaled screen-relative X coordinate on which to
1036 public boolean setCenter(float centerX, float centerY, boolean animate) { argument
1043 Float.NaN, centerX, centerY, animate);
1062 * @param centerX th
374 onMagnificationChanged(@onNull Region region, float scale, float centerX, float centerY) argument
688 onMagnificationChanged(@onNull Region region, float scale, float centerX, float centerY) argument
811 dispatchMagnificationChanged(final @NonNull Region region, final float scale, final float centerX, final float centerY) argument
1067 onMagnificationChanged(@onNull MagnificationController controller, @NonNull Region region, float scale, float centerX, float centerY) argument
1555 onMagnificationChanged(@onNull Region region, float scale, float centerX, float centerY) argument
[all...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMagnificationController.java210 final float centerX = (mMagnificationBounds.width() / 2.0f
215 scale, centerX, centerY, false, INVALID_ID);
419 final float centerX = normPivotX + offsetX;
422 return setScaleAndCenterLocked(scale, centerX, centerY, animate, id);
430 * @param centerX the screen-relative X coordinate around which to
440 public boolean setCenter(float centerX, float centerY, boolean animate, int id) { argument
445 return setScaleAndCenterLocked(Float.NaN, centerX, centerY, animate, id);
455 * @param centerX the screen-relative X coordinate around which to
466 float scale, float centerX, float centerY, boolean animate, int id) {
471 return setScaleAndCenterLocked(scale, centerX, center
465 setScaleAndCenter( float scale, float centerX, float centerY, boolean animate, int id) argument
475 setScaleAndCenterLocked(float scale, float centerX, float centerY, boolean animate, int id) argument
569 updateMagnificationSpecLocked(float scale, float centerX, float centerY) argument
[all...]
H A DAccessibilityManagerService.java816 * @param centerX the new screen-relative center X coordinate
820 float scale, float centerX, float centerY) {
822 notifyMagnificationChangedLocked(region, scale, centerX, centerY);
1007 float scale, float centerX, float centerY) {
1011 service.notifyMagnificationChangedLocked(region, scale, centerX, centerY);
3015 public boolean setMagnificationScaleAndCenter(float scale, float centerX, float centerY, argument
3032 .setScaleAndCenter(scale, centerX, centerY, animate, mId);
3276 float scale, float centerX, float centerY) {
3278 .notifyMagnificationChangedLocked(region, scale, centerX, centerY);
3290 float scale, float centerX, floa
819 notifyMagnificationChanged(@onNull Region region, float scale, float centerX, float centerY) argument
1006 notifyMagnificationChangedLocked(@onNull Region region, float scale, float centerX, float centerY) argument
3275 notifyMagnificationChangedLocked(@onNull Region region, float scale, float centerX, float centerY) argument
3289 notifyMagnificationChangedInternal(@onNull Region region, float scale, float centerX, float centerY) argument
3505 notifyMagnificationChangedLocked(@onNull Region region, float scale, float centerX, float centerY) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternView.java1089 final float centerX = getCenterXForColumn(currentCell.column);
1094 (getCenterXForColumn(nextCell.column) - centerX);
1097 mInProgressX = centerX + dx;
1112 float centerX = getCenterXForColumn(j);
1123 drawCircle(canvas, (int) centerX, (int) centerY + translationY,
1152 float centerX = getCenterXForColumn(cell.column);
1161 currentPath.lineTo(centerX, centerY);
1165 lastX = centerX;
1209 private void drawCircle(Canvas canvas, float centerX, float centerY, float radius, argument
1213 canvas.drawCircle(centerX, center
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java279 float centerX, centerY;
286 centerX = (getWidth() / 2 - relativeScale * mTranslateRect.centerX()) /
300 centerX = mTranslateRect.centerX();
302 centerX = Math.min(Math.max(mTranslateRect.left + widthBuffer,
313 mScaleRunnable.start(currentScale, targetScale, centerX, centerY);
910 * @param centerX the center horizontal point around which to scale
913 private void scale(float newScale, float centerX, float centerY) { argument
972 mMatrix.postScale(factor, factor, centerX, center
1184 start(float startScale, float targetScale, float centerX, float centerY) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 4151 milliseconds