HomeSort by relevance Sort by last modified time
    Searched refs:interpolator (Results 51 - 75 of 313) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
EmbeddedRungeKuttaIntegrator.java 80 /** Prototype of the step interpolator. */
101 * @param prototype prototype of the step interpolator to use
139 * @param prototype prototype of the step interpolator to use
211 // set up an interpolator sharing the integrator arrays
212 AbstractStepInterpolator interpolator; local
216 interpolator = rki;
218 interpolator = new DummyStepInterpolator(yTmp, yDotK[stages - 1], forward);
220 interpolator.storeTime(t0);
235 interpolator.shift();
301 interpolator.storeTime(stepStart + stepSize)
    [all...]
ThreeEighthesStepInterpolator.java 24 * This class implements a step interpolator for the 3/8 fourth
27 * <p>This interpolator allows to compute dense output inside the last
70 * @param interpolator interpolator to copy from. The copy is a deep
74 public ThreeEighthesStepInterpolator(final ThreeEighthesStepInterpolator interpolator) {
75 super(interpolator);
GillStepInterpolator.java 25 * This class implements a step interpolator for the Gill fourth
28 * <p>This interpolator allows to compute dense output inside the last
75 * @param interpolator interpolator to copy from. The copy is a deep
79 public GillStepInterpolator(final GillStepInterpolator interpolator) {
80 super(interpolator);
HighamHall54StepInterpolator.java 24 * This class represents an interpolator over the last step during an
55 * @param interpolator interpolator to copy from. The copy is a deep
59 public HighamHall54StepInterpolator(final HighamHall54StepInterpolator interpolator) {
60 super(interpolator);
GraggBulirschStoerStepInterpolator.java 29 * This class implements an interpolator for the Gragg-Bulirsch-Stoer
32 * <p>This interpolator compute dense output inside the last step
146 * @param interpolator interpolator to copy from. The copy is a deep
151 (final GraggBulirschStoerStepInterpolator interpolator) {
153 super(interpolator);
157 // the interpolator has been finalized,
165 if (interpolator.polynoms == null) {
169 resetTables(interpolator.currentDegree);
172 System.arraycopy(interpolator.polynoms[i], 0
    [all...]
DormandPrince853StepInterpolator.java 29 * This class represents an interpolator over the last step during an
238 * @param interpolator interpolator to copy from. The copy is a deep
242 public DormandPrince853StepInterpolator(final DormandPrince853StepInterpolator interpolator) {
244 super(interpolator);
246 if (interpolator.currentState == null) {
254 final int dimension = interpolator.currentState.length;
259 System.arraycopy(interpolator.yDotKLast[k], 0, yDotKLast[k], 0,
266 System.arraycopy(interpolator.v[k], 0, v[k], 0, dimension);
269 vectorsInitialized = interpolator.vectorsInitialized
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
AnimationProperties.java 23 import android.view.animation.Interpolator;
33 private ArrayMap<Property, Interpolator> mInterpolatorMap;
54 * Get a custom interpolator for a property instead of the normal one.
56 public Interpolator getCustomInterpolator(View child, Property property) {
62 ArrayMap<Property, Interpolator> map = iconAnimationProperties.mInterpolatorMap;
72 * Set a custom interpolator to use for all views for a property.
74 public AnimationProperties setCustomInterpolator(Property property, Interpolator interpolator) {
78 mInterpolatorMap.put(property, interpolator);
  /frameworks/support/compat/tests/java/android/support/v4/widget/
ScrollerCompatTestBase.java 26 import android.view.animation.Interpolator;
44 protected void createScroller(Interpolator interpolator)
47 mScroller = new ScrollerCompat(InstrumentationRegistry.getContext(), interpolator);
  /prebuilts/ndk/r11/sources/android/ndk_helper/
Android.mk 6 LOCAL_SRC_FILES:= JNIHelper.cpp interpolator.cpp tapCamera.cpp gestureDetector.cpp perfMonitor.cpp vecmath.cpp GLContext.cpp shader.cpp gl3stub.c
  /prebuilts/ndk/r13/sources/android/ndk_helper/
Android.mk 6 LOCAL_SRC_FILES:= JNIHelper.cpp interpolator.cpp tapCamera.cpp gestureDetector.cpp perfMonitor.cpp vecmath.cpp GLContext.cpp shader.cpp gl3stub.c
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
FirstOrderIntegratorWithJacobians.java 572 public void handleStep(StepInterpolator interpolator, boolean isLast)
574 handler.handleStep(new StepInterpolatorWrapper(interpolator, n, k), isLast);
593 /** Wrapped interpolator. */
594 private StepInterpolator interpolator; field in class:FirstOrderIntegratorWithJacobians.StepInterpolatorWrapper
622 * @param interpolator wrapped interpolator
626 public StepInterpolatorWrapper(final StepInterpolator interpolator,
628 this.interpolator = interpolator;
639 interpolator.setInterpolatedTime(time)
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
ContinuousOutputModel.java 104 /** Current interpolator index. */
120 * @exception DerivativeException if user code called from step interpolator
161 for (StepInterpolator interpolator : model.steps) {
162 steps.add(interpolator.copy());
195 * @param interpolator interpolator for the last accepted step.
197 * @exception DerivativeException if user code called from step interpolator
200 public void handleStep(final StepInterpolator interpolator, final boolean isLast)
204 initialTime = interpolator.getPreviousTime();
205 forward = interpolator.isForward()
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
KeyframeTest.java 103 TimeInterpolator interpolator = new AccelerateInterpolator(); local
104 keyFrame.setInterpolator(interpolator);
105 assertEquals(interpolator, keyFrame.getInterpolator());
  /packages/services/Car/tests/InstrumentClusterRendererSample/src/com/android/car/cluster/sample/cards/
MediaCard.java 83 TimeInterpolator interpolator = local
96 .setInterpolator(interpolator)
102 .setInterpolator(interpolator)
CallCard.java 129 TimeInterpolator interpolator = local
143 .setInterpolator(interpolator)
150 .setInterpolator(interpolator)
186 TimeInterpolator interpolator = local
193 .setInterpolator(interpolator)
203 .setInterpolator(interpolator)
  /frameworks/base/libs/hwui/
PropertyValuesAnimatorSet.cpp 26 Interpolator* interpolator, nsecs_t startDelay, nsecs_t duration, int repeatCount,
30 interpolator, startDelay, duration, repeatCount, repeatMode);
130 PropertyAnimator::PropertyAnimator(PropertyValuesHolder* holder, Interpolator* interpolator,
133 : mPropertyValuesHolder(holder), mInterpolator(interpolator), mStartDelay(startDelay),
  /packages/apps/TV/src/com/android/tv/ui/
FullscreenDialogView.java 62 android.R.interpolator.linear_out_slow_in);
64 android.R.interpolator.fast_out_linear_in);
134 protected void onStartEnterAnimation(TimeInterpolator interpolator, long duration) {
140 protected void onStartExitAnimation(TimeInterpolator interpolator, long duration,
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/affordance/
SwipeButtonView.java 34 import android.view.animation.Interpolator;
292 Interpolator interpolator = local
296 animator.setInterpolator(interpolator);
315 previewClipper.setInterpolator(interpolator);
364 * @param interpolator If animate, whats the interpolator? When null we take the default
365 * interpolator.
368 float imageScale, boolean animate, long duration, @Nullable Interpolator interpolator) {
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/
AppearAnimationUtils.java 28 import android.view.animation.Interpolator;
40 private final Interpolator mInterpolator;
51 AnimationUtils.loadInterpolator(ctx, android.R.interpolator.linear_out_slow_in));
55 float delayScaleFactor, Interpolator interpolator) {
56 mInterpolator = interpolator;
175 public Interpolator getInterpolator() {
185 boolean appearing, Interpolator interpolator, final Runnable endRunnable) {
199 alphaAnim.setInterpolator(interpolator);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/view/
ViewPropertyAnimatorCompatSet.java 26 import android.view.animation.Interpolator;
42 private Interpolator mInterpolator;
105 public ViewPropertyAnimatorCompatSet setInterpolator(Interpolator interpolator) {
107 mInterpolator = interpolator;
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/handheld/
GrantPermissionsViewHandlerImpl.java 29 import android.view.animation.Interpolator;
150 Interpolator interpolator = AnimationUtils.loadInterpolator(mActivity, local
151 android.R.interpolator.fast_out_linear_in);
158 .setInterpolator(interpolator)
165 .setInterpolator(interpolator)
174 .setInterpolator(interpolator)
211 android.R.interpolator.linear_out_slow_in))
234 Interpolator interpolator = AnimationUtils.loadInterpolator(mActivity local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
TrustDrawable.java 32 import android.view.animation.Interpolator;
221 int startAlpha, int endAlpha, long duration, Interpolator interpolator,
225 duration, mAlphaUpdateListener, interpolator, repeating);
228 duration, mRadiusUpdateListener, interpolator, repeating);
239 ValueAnimator.AnimatorUpdateListener updateListener, Interpolator interpolator,
243 animator.setInterpolator(interpolator);
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/hint/
PawAnswerHint.java 32 import android.view.animation.Interpolator;
217 Interpolator interpolator) {
222 scaleX.setInterpolator(interpolator);
223 scaleY.setInterpolator(interpolator);
230 View target, float begin, float end, long duration, long delay, Interpolator interpolator) {
233 alpha.setInterpolator(interpolator);
  /frameworks/base/core/java/android/widget/
OverScroller.java 24 import android.view.animation.Interpolator;
37 private Interpolator mInterpolator;
46 * Creates an OverScroller with a viscous fluid scroll interpolator and flywheel.
56 * @param interpolator The scroll interpolator. If null, a default (viscous) interpolator will
59 public OverScroller(Context context, Interpolator interpolator) {
60 this(context, interpolator, true);
66 * @param interpolator The scroll interpolator. If null, a default (viscous) interpolator wil
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationUtilsTest.java 32 import android.view.animation.Interpolator;
59 // android:interpolator="@android:anim/accelerate_interpolator"
68 // Load Interpolator from android.R.anim.accelerate_interpolator
69 Interpolator interpolator = AnimationUtils.loadInterpolator(mActivity, local
71 assertTrue(interpolator instanceof AccelerateInterpolator);

Completed in 4598 milliseconds

1 23 4 5 6 7 8 91011>>