Searched defs:endX (Results 1 - 3 of 3) sorted by relevance

/packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/
H A DTranslationAnimationCreator.java31 * @param endX The end translation x of view
33 * @return An animator that moves from (startX, startY) to (endX, endY) unless there was a
34 * previous interruption, in which case it moves from the current position to (endX,
38 float endX, TimeInterpolator interpolator, Transition transition) {
49 if (startX == endX) {
54 path.lineTo(endX, 0);
37 createAnimation(View view, TransitionValues values, int viewPosX, float startX, float endX, TimeInterpolator interpolator, Transition transition) argument
/packages/apps/Camera2/jni/
H A Djpegutil.h202 // The line is defined by (startX, startY) -> (endX, endY), computed via the
208 int endX; local
210 transform_.Map(output_width - 1, y, &endX, &endY);
212 // Clamp (startX, startY) and (endX, endY) to the valid bounds of the plane.
215 endX = min(endX, plane_.width - 1);
219 endX = max(endX, 0);
225 int dx = sgn(endX - startX);
230 // The index into plane_.data of (endX, end
[all...]
/packages/apps/Messaging/src/com/android/messaging/ui/
H A DMultiAttachmentLayout.java84 public final int endX; field in class:MultiAttachmentLayout.Tile
87 private Tile(final int startX, final int startY, final int endX, final int endY) { argument
90 this.endX = endX;
95 return MeasureSpec.makeMeasureSpec((endX - startX + 1) * cellWidth - padding * 2,

Completed in 141 milliseconds