OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:anticipateinterpolator
(Results
1 - 17
of
17
) sorted by null
/frameworks/base/core/java/android/view/animation/
AnticipateInterpolator.java
34
public class
AnticipateInterpolator
extends BaseInterpolator implements NativeInterpolatorFactory {
37
public
AnticipateInterpolator
() {
46
public
AnticipateInterpolator
(float tension) {
50
public
AnticipateInterpolator
(Context context, AttributeSet attrs) {
55
public
AnticipateInterpolator
(Resources res, Theme theme, AttributeSet attrs) {
58
a = theme.obtainStyledAttributes(attrs, R.styleable.
AnticipateInterpolator
, 0, 0);
60
a = res.obtainAttributes(attrs, R.styleable.
AnticipateInterpolator
);
AnimationUtils.java
386
} else if (name.equals("
anticipateInterpolator
")) {
387
interpolator = new
AnticipateInterpolator
(res, theme, attrs);
/frameworks/base/core/res/res/anim/
anticipate_interpolator.xml
21
<
anticipateInterpolator
/>
/frameworks/base/core/res/res/interpolator/
anticipate.xml
21
<
anticipateInterpolator
/>
/frameworks/base/libs/hwui/
Interpolator.h
54
class ANDROID_API
AnticipateInterpolator
: public Interpolator {
56
explicit
AnticipateInterpolator
(float tension) : mTension(tension) {}
Interpolator.cpp
44
float
AnticipateInterpolator
::interpolate(float t) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/animation/
NativeInterpolatorFactoryHelper_Delegate.java
26
import android.view.animation.
AnticipateInterpolator
;
65
return sManager.addNewDelegate(new
AnticipateInterpolator
(tension));
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
AnimationUtilsCompat.java
36
import android.view.animation.
AnticipateInterpolator
;
131
} else if (name.equals("
anticipateInterpolator
")) {
132
interpolator = new
AnticipateInterpolator
(context, attrs);
/frameworks/base/core/jni/
com_android_internal_view_animation_NativeInterpolatorFactoryHelper.cpp
39
return reinterpret_cast<jlong>(new
AnticipateInterpolator
(tension));
/prebuilts/sdk/current/support/graphics/drawable/
android-support-animatedvectordrawable.jar
/prebuilts/misc/common/robolectric/lib/
android-all-4.1.2_r1-robolectric-0-sources.jar
android-all-4.2.2_r1.2-robolectric-0-sources.jar
android-all-4.3_r2-robolectric-0-sources.jar
android-all-4.4_r1-robolectric-1-sources.jar
android-all-5.0.0_r2-robolectric-1-sources.jar
android-all-6.0.0_r1-robolectric-0-sources.jar
/frameworks/base/core/res/res/values/
attrs.xml
[
all
...]
Completed in 461 milliseconds