OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LinearInterpolator
(Results
1 - 25
of
73
) sorted by null
1
2
3
/frameworks/base/core/java/android/view/animation/
LinearInterpolator.java
30
public class
LinearInterpolator
extends BaseInterpolator implements NativeInterpolatorFactory {
32
public
LinearInterpolator
() {
35
public
LinearInterpolator
(Context context, AttributeSet attrs) {
/cts/tests/tests/view/src/android/view/animation/cts/
LinearInterpolatorTest.java
26
import android.view.animation.
LinearInterpolator
;
33
* Test {@link
LinearInterpolator
}.
55
new
LinearInterpolator
();
56
new
LinearInterpolator
(mActivity, null);
60
LinearInterpolator
interpolator = new
LinearInterpolator
();
77
Interpolator interpolator = new
LinearInterpolator
();
RotateAnimationTest.java
27
import android.view.animation.
LinearInterpolator
;
89
rotateAnimation.setInterpolator(new
LinearInterpolator
());
145
rotateAnimation.setInterpolator(new
LinearInterpolator
());
TranslateAnimationTest.java
27
import android.view.animation.
LinearInterpolator
;
92
translateAnimation.setInterpolator(new
LinearInterpolator
());
163
translateAnimation.setInterpolator(new
LinearInterpolator
());
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
SoftLandingInterpolator.java
21
import android.view.animation.
LinearInterpolator
;
29
private final
LinearInterpolator
fly;
38
fly = new
LinearInterpolator
();
/frameworks/base/packages/SystemUI/src/com/android/systemui/
Interpolators.java
23
import android.view.animation.
LinearInterpolator
;
35
public static final Interpolator LINEAR = new
LinearInterpolator
();
/frameworks/support/design/base/android/support/design/widget/
AnimationUtils.java
25
import android.view.animation.
LinearInterpolator
;
29
static final Interpolator LINEAR_INTERPOLATOR = new
LinearInterpolator
();
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AnimationTest.java
5
import android.view.animation.
LinearInterpolator
;
94
LinearInterpolator
i = new
LinearInterpolator
();
96
assertThat((
LinearInterpolator
)animation.getInterpolator(), sameInstance(i));
/external/opencv3/modules/cudawarping/test/
test_remap.cpp
88
remapImpl<unsigned char,
LinearInterpolator
>,
89
remapImpl<signed char,
LinearInterpolator
>,
90
remapImpl<unsigned short,
LinearInterpolator
>,
91
remapImpl<short,
LinearInterpolator
>,
92
remapImpl<int,
LinearInterpolator
>,
93
remapImpl<float,
LinearInterpolator
>
test_resize.cpp
93
resizeImpl<unsigned char,
LinearInterpolator
>,
94
resizeImpl<signed char,
LinearInterpolator
>,
95
resizeImpl<unsigned short,
LinearInterpolator
>,
96
resizeImpl<short,
LinearInterpolator
>,
97
resizeImpl<int,
LinearInterpolator
>,
98
resizeImpl<float,
LinearInterpolator
>
test_warp_affine.cpp
149
warpAffineImpl<unsigned char,
LinearInterpolator
>,
150
warpAffineImpl<signed char,
LinearInterpolator
>,
151
warpAffineImpl<unsigned short,
LinearInterpolator
>,
152
warpAffineImpl<short,
LinearInterpolator
>,
153
warpAffineImpl<int,
LinearInterpolator
>,
154
warpAffineImpl<float,
LinearInterpolator
>
test_warp_perspective.cpp
152
warpPerspectiveImpl<unsigned char,
LinearInterpolator
>,
153
warpPerspectiveImpl<signed char,
LinearInterpolator
>,
154
warpPerspectiveImpl<unsigned short,
LinearInterpolator
>,
155
warpPerspectiveImpl<short,
LinearInterpolator
>,
156
warpPerspectiveImpl<int,
LinearInterpolator
>,
157
warpPerspectiveImpl<float,
LinearInterpolator
>
/development/samples/devbytes/animation/Anticipation/src/com/example/android/anticipation/
AnticiButton.java
30
import android.view.animation.
LinearInterpolator
;
43
private static final
LinearInterpolator
sLinearInterpolator = new
LinearInterpolator
();
119
// Slide. Use
LinearInterpolator
in this rare situation where we want to start
/frameworks/base/core/java/android/view/
ViewPropertyAnimatorRT.java
22
import android.view.animation.
LinearInterpolator
;
34
private static final Interpolator sLinearInterpolator = new
LinearInterpolator
();
73
// Documented to be
LinearInterpolator
in ValueAnimator.setInterpolator
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
MovingSurfaceViewActivity.java
29
import android.view.animation.
LinearInterpolator
;
98
mAnimator.setInterpolator(new
LinearInterpolator
());
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/animation/
NativeInterpolatorFactoryHelper_Delegate.java
32
import android.view.animation.
LinearInterpolator
;
88
return sManager.addNewDelegate(new
LinearInterpolator
());
/packages/apps/Camera2/src/com/android/camera/ui/
CaptureAnimationOverlay.java
30
import android.view.animation.
LinearInterpolator
;
61
mFlashAnimInterpolator = new
LinearInterpolator
();
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
LinearInterpolator.java
31
public class
LinearInterpolator
implements UnivariateRealInterpolator {
/frameworks/base/libs/hwui/
Interpolator.h
90
class ANDROID_API
LinearInterpolator
: public Interpolator {
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
SurfaceViewTests.java
33
import android.view.animation.
LinearInterpolator
;
78
a.setInterpolator(new
LinearInterpolator
());
/frameworks/base/graphics/java/android/graphics/drawable/
RippleBackground.java
30
import android.view.animation.
LinearInterpolator
;
37
private static final TimeInterpolator LINEAR_INTERPOLATOR = new
LinearInterpolator
();
/packages/apps/PackageInstaller/src/android/support/wearable/view/
ProgressDrawable.java
31
import android.view.animation.
LinearInterpolator
;
86
mAnimator.setInterpolator(new
LinearInterpolator
());
/frameworks/base/core/jni/
com_android_internal_view_animation_NativeInterpolatorFactoryHelper.cpp
58
return reinterpret_cast<jlong>(new
LinearInterpolator
());
/frameworks/support/v4/tests/java/android/support/v4/widget/
ScrollerCompatTestBase.java
26
import android.view.animation.
LinearInterpolator
;
/development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
ToonGame.java
36
import android.view.animation.
LinearInterpolator
;
59
private static final
LinearInterpolator
sLinearInterpolator = new
LinearInterpolator
();
Completed in 2278 milliseconds
1
2
3