Home
last modified time | relevance | path

Searched defs:startValue (Results 1 – 25 of 685) sorted by relevance

12345678910>>...28

/aosp_15_r20/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/pip/
H A DPipAnimationControllerTest.java96 final Rect startValue = new Rect(0, 0, 100, 100); in getAnimator_withBounds_returnBoundsAnimator() local
110 final Rect startValue = new Rect(0, 0, 100, 100); in getAnimator_whenSameTypeRunning_updateExistingAnimator() local
212 final Rect startValue = new Rect(0, 0, 100, 100); in pipTransitionAnimator_updateEndValue() local
228 final Rect startValue = new Rect(0, 0, 100, 100); in pipTransitionAnimator_setPipAnimationCallback() local
256 final Rect startValue = new Rect(0, 0, 100, 100); in pipTransitionAnimator_overrideMainWindowFrame() local
286 final Rect startValue = new Rect(0, 0, 100, 100); in pipTransitionAnimator_animateTaskBounds() local
316 final Rect startValue = new Rect(0, 0, 100, 100); in pipTransitionAnimator_letterboxed_animateTaskBounds() local
347 final Rect startValue = new Rect(0, 0, 100, 100); in pipTransitionAnimator_sizeCompat_animateTaskBounds() local
/aosp_15_r20/frameworks/base/libs/hwui/
H A DPropertyValuesHolder.h66 PropertyValuesHolderImpl(const T& startValue, const T& endValue) in PropertyValuesHolderImpl()
90 GroupPropertyValuesHolder(VectorDrawable::Group* ptr, int propertyId, float startValue, in GroupPropertyValuesHolder()
105 SkColor startValue, SkColor endValue) in FullPathColorPropertyValuesHolder()
121 FullPathPropertyValuesHolder(VectorDrawable::FullPath* ptr, int propertyId, float startValue, in FullPathPropertyValuesHolder()
137 PathDataPropertyValuesHolder(VectorDrawable::Path* ptr, PathData* startValue, in PathDataPropertyValuesHolder()
151 RootAlphaPropertyValuesHolder(VectorDrawable::Tree* tree, float startValue, float endValue) in RootAlphaPropertyValuesHolder()
/aosp_15_r20/external/lottie/lottie/src/main/java/com/airbnb/lottie/value/
H A DKeyframe.java16 @Nullable public final T startValue; field in Keyframe
40 @Nullable T startValue, @Nullable T endValue, in Keyframe()
53 @Nullable T startValue, @Nullable T endValue, in Keyframe()
66 @Nullable T startValue, @Nullable T endValue, in Keyframe()
93 private Keyframe(T startValue, T endValue) { in Keyframe()
104 public Keyframe<T> copyWith(T startValue, T endValue) { in copyWith()
H A DLottieInterpolatedValue.java8 private final T startValue; field in LottieInterpolatedValue
12 LottieInterpolatedValue(T startValue, T endValue) { in LottieInterpolatedValue()
16 LottieInterpolatedValue(T startValue, T endValue, Interpolator interpolator) { in LottieInterpolatedValue()
27 abstract T interpolateValue(T startValue, T endValue, float progress); in interpolateValue()
H A DLottieInterpolatedIntegerValue.java10 public LottieInterpolatedIntegerValue(Integer startValue, Integer endValue) { in LottieInterpolatedIntegerValue()
14 …public LottieInterpolatedIntegerValue(Integer startValue, Integer endValue, Interpolator interpola… in LottieInterpolatedIntegerValue()
18 @Override Integer interpolateValue(Integer startValue, Integer endValue, float progress) { in interpolateValue()
H A DLottieInterpolatedFloatValue.java10 public LottieInterpolatedFloatValue(Float startValue, Float endValue) { in LottieInterpolatedFloatValue()
14 public LottieInterpolatedFloatValue(Float startValue, Float endValue, Interpolator interpolator) { in LottieInterpolatedFloatValue()
18 @Override Float interpolateValue(Float startValue, Float endValue, float progress) { in interpolateValue()
H A DLottieInterpolatedPointValue.java12 public LottieInterpolatedPointValue(PointF startValue, PointF endValue) { in LottieInterpolatedPointValue()
16 …public LottieInterpolatedPointValue(PointF startValue, PointF endValue, Interpolator interpolator)… in LottieInterpolatedPointValue()
20 @Override PointF interpolateValue(PointF startValue, PointF endValue, float progress) { in interpolateValue()
H A DLottieFrameInfo.java12 private T startValue; field in LottieFrameInfo
22 T startValue, in set()
/aosp_15_r20/external/aws-sdk-java-v2/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/mapper/
H A DAtomicCounter.java32 private final CounterAttribute startValue; field in AtomicCounter
47 public CounterAttribute startValue() { in startValue() method in AtomicCounter
77 private Long startValue; field in AtomicCounter.Builder
87 public Builder startValue(Long startValue) { in startValue() argument
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/viewmodel/
H A DAodToLockscreenTransitionViewModel.kt58 var startValue = 0f in translationY() variable
71 var startValue = 0f in translationX() variable
/aosp_15_r20/external/robolectric/nativeruntime/src/main/java/org/robolectric/nativeruntime/
H A DAnimatedVectorDrawableNatives.java51 long nativePtr, int propertyId, float startValue, float endValue); in nCreateGroupPropertyHolder()
57 long nativePtr, int propertyId, int startValue, int endValue); in nCreatePathColorPropertyHolder()
60 long nativePtr, int propertyId, float startValue, float endValue); in nCreatePathPropertyHolder()
63 long nativePtr, float startValue, float endValue); in nCreateRootAlphaPropertyHolder()
/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowNativeAnimatedVectorDrawable.java104 long nativePtr, int propertyId, float startValue, float endValue) { in nCreateGroupPropertyHolder()
118 long nativePtr, int propertyId, int startValue, int endValue) { in nCreatePathColorPropertyHolder()
125 long nativePtr, int propertyId, float startValue, float endValue) { in nCreatePathPropertyHolder()
132 long nativePtr, float startValue, float endValue) { in nCreateRootAlphaPropertyHolder()
/aosp_15_r20/packages/apps/Launcher3/quickstep/src/com/android/launcher3/taskbar/bubbles/flyout/
DBubbleBarFlyoutController.kt92 val startValue = getCurrentAnimatedValueIfRunning() ?: 0f in <lambda>() constant
150 val startValue = getCurrentAnimatedValueIfRunning() ?: 1f in <lambda>() constant
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DNewtonSolver.java69 public double solve(final double min, final double max, final double startValue) in solve()
129 final double min, final double max, final double startValue) in solve()
151 final double min, final double max, final double startValue) in solve()
H A DUnivariateRealSolver.java122 double solve(double min, double max, double startValue) in solve()
145 double solve(UnivariateRealFunction f, double min, double max, double startValue) in solve()
/aosp_15_r20/frameworks/base/libs/hwui/jni/
H A Dandroid_graphics_drawable_AnimatedVectorDrawable.cpp105 jfloat startValue, jfloat endValue) { in createGroupPropertyHolder()
123 int startValue, jint endValue) { in createPathColorPropertyHolder()
131 float startValue, jfloat endValue) { in createPathPropertyHolder()
138 static jlong createRootAlphaPropertyHolder(JNIEnv*, jobject, jlong nativePtr, jfloat startValue, in createRootAlphaPropertyHolder()
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/analysis/solvers/
H A DBaseAbstractUnivariateSolver.java178 double startValue) in setup()
192 public double solve(int maxEval, FUNC f, double min, double max, double startValue) in solve()
208 public double solve(int maxEval, FUNC f, double startValue) in solve()
H A DBaseUnivariateSolver.java126 double solve(int maxEval, FUNC f, double min, double max, double startValue) in solve()
141 double solve(int maxEval, FUNC f, double startValue); in solve()
H A DBaseSecantSolver.java114 final double min, final double max, final double startValue, in solve()
123 final double min, final double max, final double startValue) { in solve()
/aosp_15_r20/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/
H A DPipAnimationController.java345 @NonNull T baseValue, @NonNull T startValue, @NonNull T endValue) { in PipTransitionAnimator()
352 @NonNull Point leashOffset, @NonNull T baseValue, @NonNull T startValue, in PipTransitionAnimator()
568 Rect destinationBounds, float startValue, float endValue) { in ofAlpha()
608 Rect baseValue, Rect startValue, Rect endValue, Rect sourceRectHint, in ofBounds()
/aosp_15_r20/frameworks/base/graphics/java/android/graphics/animation/
H A DRenderNodeAnimator.java292 public void setStartValue(float startValue) { in setStartValue()
294 nSetStartValue(mNativePtr.get(), startValue); in setStartValue() local
503 private static native void nSetStartValue(long nativePtr, float startValue); in nSetStartValue()
/aosp_15_r20/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedVectorDrawable.java1465 Float startValue = null; in createRTAnimatorForRootGroup() local
1853 float startValue, float endValue); in nCreateGroupPropertyHolder()
1859 int startValue, int endValue); in nCreatePathColorPropertyHolder()
1862 float startValue, float endValue); in nCreatePathPropertyHolder()
1864 private static native long nCreateRootAlphaPropertyHolder(long nativePtr, float startValue, in nCreateRootAlphaPropertyHolder()
/aosp_15_r20/packages/modules/Connectivity/staticlibs/tests/unit/src/com/android/net/module/util/async/
DCircularByteBufferTest.java198 private static int fillTestBytes(byte[] buffer, int pos, int len, int startValue) { in fillTestBytes()
207 byte[] buffer, int pos, int len, int startValue, int totalRead) { in checkTestBytes()
/aosp_15_r20/external/lottie/lottie/src/main/java/com/airbnb/lottie/parser/
H A DKeyframeParser.java97 T startValue = null; in parseKeyframe() local
167 T startValue = null; in parseMultiDimensionalKeyframe() local
/aosp_15_r20/packages/services/Car/car_product/car_ui_portrait/apps/CarUiPortraitSystemUI/src/com/android/systemui/car/displayarea/
DCarDisplayAreaAnimationController.java125 float startValue, float endValue) { in CarDisplayAreaTransitionAnimator()
230 SurfaceControl leash, float startValue, float endValue) { in ofYOffset()

12345678910>>...28