Searched refs:startY (Results 26 - 50 of 63) sorted by relevance

123

/frameworks/base/core/java/com/android/internal/transition/
H A DEpicenterTranslateClipReveal.java132 final float startY = startBounds.centerY() - endBounds.centerY();
137 view.setTranslationY(startY);
152 final State startStateY = new State(startClip.top, startClip.bottom, startY);
173 final float startY = (float) endValues.values.get(PROPNAME_TRANSLATE_Y);
184 final State startStateY = new State(startClip.top, startClip.bottom, startY);
210 private static Animator createRectAnimator(final View view, State startX, State startY, argument
228 final ObjectAnimator animY = ObjectAnimator.ofObject(view, propY, evaluator, startY, endY);
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp211 const SkGlyph& glyph, uint32_t* startX, uint32_t* startY) {
213 if (cacheTextures[i]->fitBitmap(glyph, startX, startY)) {
263 uint32_t startY = 0; local
265 CacheTexture* cacheTexture = cacheBitmapInTexture(*cacheTextures, glyph, &startX, &startY);
272 cacheTexture = cacheBitmapInTexture(*cacheTextures, glyph, &startX, &startY);
284 *retOriginY = startY;
287 uint32_t endY = startY + glyph.fHeight;
308 uint32_t row = (startY - TEXTURE_BORDER_SIZE) * cacheWidth + startX
314 for (cacheY = startY, bY = 0; cacheY < endY; cacheY++, bY += srcStride) {
324 for (cacheY = startY, b
210 cacheBitmapInTexture(std::vector<CacheTexture*>& cacheTextures, const SkGlyph& glyph, uint32_t* startX, uint32_t* startY) argument
[all...]
H A DDisplayListCanvas.h177 virtual void drawLine(float startX, float startY, float stopX, float stopY,
179 float points[4] = { startX, startY, stopX, stopY };
H A DRecordingCanvas.h156 virtual void drawLine(float startX, float startY, float stopX, float stopY,
158 float points[4] = { startX, startY, stopX, stopY };
H A DFontRenderer.h158 uint32_t* startX, uint32_t* startY);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiDevice.java423 * @param startY
430 public boolean swipe(int startX, int startY, int endX, int endY, int steps) { argument
431 Tracer.trace(startX, startY, endX, endY, steps);
433 .swipe(startX, startY, endX, endY, steps);
443 * @param startY Y-axis value for the starting coordinate
451 public boolean drag(int startX, int startY, int endX, int endY, int steps) { argument
452 Tracer.trace(startX, startY, endX, endY, steps);
454 .swipe(startX, startY, endX, endY, steps, true);
/frameworks/base/core/java/android/animation/
H A DPathKeyframes.java110 float startY = mKeyframeData[startBase + Y_OFFSET];
114 float y = interpolate(intervalFraction, startY, endY);
/frameworks/base/core/java/android/view/
H A DIWindowManager.aidl137 void overridePendingAppTransitionScaleUp(int startX, int startY, int startWidth,
139 void overridePendingAppTransitionClipReveal(int startX, int startY,
141 void overridePendingAppTransitionThumb(in Bitmap srcThumb, int startX, int startY,
144 int startY, int targetWidth, int targetHeight, IRemoteCallback startedCallback,
H A DIWindowSession.aidl259 * Starts a task window move with {startX, startY} as starting point. The amount of move
260 * will be the offset between {startX, startY} and the new cursor position.
264 boolean startMovingTask(IWindow window, float startX, float startY);
/frameworks/base/libs/hwui/font/
H A DFont.cpp218 uint32_t startY = glyph->mStartY * srcStride; local
219 uint32_t endY = startY + (glyph->mBitmapHeight * srcStride);
223 for (uint32_t cacheY = startY, bitmapY = dstY * bitmapWidth; cacheY < endY;
436 uint32_t startY = 0; local
442 mState->cacheBitmap(skiaGlyph, glyph, &startX, &startY, precaching);
449 uint32_t endY = startY + skiaGlyph.fHeight;
452 glyph->mStartY = startY;
462 glyph->mBitmapMinV = startY / (float) cacheHeight;
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DIWindowManagerImpl.java218 public void overridePendingAppTransitionScaleUp(int startX, int startY, int startWidth, argument
224 public void overridePendingAppTransitionClipReveal(int startX, int startY, argument
230 public void overridePendingAppTransitionThumb(Bitmap srcThumb, int startX, int startY, argument
237 int startY, int targetWidth, int targetHeight, IRemoteCallback startedCallback,
236 overridePendingAppTransitionAspectScaledThumb(Bitmap srcThumb, int startX, int startY, int targetWidth, int targetHeight, IRemoteCallback startedCallback, boolean scaleUp) argument
/frameworks/support/transition/ics/android/support/transition/
H A DChangeBoundsPort.java313 int startY = (Integer) startValues.values.get(PROPNAME_WINDOW_Y);
317 if (startX != endX || startY != endY) {
327 Rect startBounds1 = new Rect(startX - tempLocation[0], startY - tempLocation[1],
329 startY - tempLocation[1] + view.getHeight());
/frameworks/support/v17/leanback/api21/android/support/v17/leanback/transition/
H A DFadeAndShortSlide.java236 float startY = mSlideCalculator.getGoneY(this, sceneRoot, view, position);
238 left, top, startX, startY, endX, endY, sDecelerate, this);
266 float startY = view.getTranslationY();
269 startValues, left, top, startX, startY, endX, endY, sDecelerate /* sAccelerate */,
/frameworks/base/core/java/android/view/animation/
H A DPathInterpolator.java228 float startY = mY[startIndex];
230 return startY + (fraction * (endY - startY));
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskPositioner.java337 void startDragLocked(WindowState win, boolean resize, float startX, float startY) { argument
340 + ", {" + startX + ", " + startY + "}");
345 mStartDragY = startY;
369 if (startY < mTmpRect.top) {
372 if (startY > mTmpRect.bottom) {
H A DAppTransition.java1121 final float startY = targetY - y;
1126 ? createCurvedMotion(startX, 0, startY - contentInsets.top, 0)
1127 : createCurvedMotion(0, startX, 0, startY - contentInsets.top);
1624 void overridePendingAppTransitionScaleUp(int startX, int startY, int startWidth, argument
1629 putDefaultNextAppTransitionCoordinates(startX, startY, startWidth, startHeight, null);
1634 void overridePendingAppTransitionClipReveal(int startX, int startY, argument
1639 putDefaultNextAppTransitionCoordinates(startX, startY, startWidth, startHeight, null);
1644 void overridePendingAppTransitionThumb(Bitmap srcThumb, int startX, int startY, argument
1651 putDefaultNextAppTransitionCoordinates(startX, startY, 0, 0, srcThumb);
1659 void overridePendingAppTransitionAspectScaledThumb(Bitmap srcThumb, int startX, int startY, argument
[all...]
H A DSession.java368 public boolean startMovingTask(IWindow window, float startX, float startY) { argument
370 TAG_WM, "startMovingTask: {" + startX + "," + startY + "}");
374 return mService.startMovingTask(window, startX, startY);
/frameworks/rs/
H A DrsFont.cpp256 uint32_t startY = 0; local
260 glyph->mIsValid = state->cacheBitmap(bitmap, &startX, &startY);
267 uint32_t endY = startY + bitmap->rows;
270 glyph->mBitmapMinY = startY;
278 glyph->mBitmapMinV = (float)startY / (float)cacheHeight;
425 uint32_t startY = 0; local
429 bitmapFit = mCacheLines[i]->fitBitmap(bitmap, &startX, &startY);
441 bitmapFit = mCacheLines[i]->fitBitmap(bitmap, &startX, &startY);
455 *retOriginY = startY;
458 uint32_t endY = startY
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationTemplateViewWrapper.java100 float startY = getTransformationY(ownState, otherState);
101 ownState.setTransformationStartY(startY);
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DIntents.java248 public PhotoViewIntentBuilder setScaleAnimation(int startX, int startY, argument
252 mStartY = startY;
/frameworks/base/core/java/android/transition/
H A DChangeBounds.java437 int startY = (Integer) startValues.values.get(PROPNAME_WINDOW_Y) - tempLocation[1];
441 if (startX != endX || startY != endY) {
448 drawable.setBounds(startX, startY, startX + width, startY + height);
452 Path topLeftPath = getPathMotion().getPath(startX, startY, endX, endY);
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DMonthView.java490 final int startY = (int)(y - yRelativeToDay);
491 final int stopY = (int)(startY + mRowHeight);
493 drawMonthDay(canvas, mYear, mMonth, dayNumber, x, y, startX, stopX, startY, stopY);
514 * @param startY The top boundary of the day number rect
518 int x, int y, int startX, int stopX, int startY, int stopY);
517 drawMonthDay(Canvas canvas, int year, int month, int day, int x, int y, int startX, int stopX, int startY, int stopY) argument
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleForeground.java284 final float startY = getCurrentY();
292 mPropY = CanvasProperty.createFloat(startY);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java556 final float startX, final float startY, final float stopX, final float stopY,
562 graphics.drawLine((int)startX, (int)startY, (int)stopX, (int)stopY);
940 float startX, float startY, int flags, long paint, long typeface) {
941 drawText(nativeCanvas, text, index, count, startX, startY, (flags & 1) != 0,
1052 final int count, final float startX, final float startY, final boolean isRtl,
1080 new BidiRenderer(graphics, paintDelegate, text).setRenderLocation(x, startY)
555 native_drawLine(long nativeCanvas, final float startX, final float startY, final float stopX, final float stopY, long paint) argument
939 native_drawText(long nativeCanvas, char[] text, int index, int count, float startX, float startY, int flags, long paint, long typeface) argument
1051 drawText(long nativeCanvas, final char[] text, final int index, final int count, final float startX, final float startY, final boolean isRtl, long paint, final long typeface) argument
/frameworks/base/libs/hwui/hwui/
H A DCanvas.h179 virtual void drawLine(float startX, float startY, float stopX, float stopY,

Completed in 704 milliseconds

123