OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:toValue
(Results
1 - 18
of
18
) sorted by null
/external/proguard/src/proguard/gui/splash/
LinearDouble.java
31
private final double
toValue
;
38
* @param
toValue
the value that corresponds to a timing of 1.
41
public LinearDouble(double fromValue, double
toValue
, Timing timing)
44
this.
toValue
=
toValue
;
53
return fromValue + timing.getTiming(time) * (
toValue
- fromValue);
LinearInt.java
31
private final int
toValue
;
38
* @param
toValue
the value that corresponds to a timing of 1.
41
public LinearInt(int fromValue, int
toValue
, Timing timing)
44
this.
toValue
=
toValue
;
53
return (int) (fromValue + timing.getTiming(time) * (
toValue
- fromValue));
LinearColor.java
33
private final Color
toValue
;
43
* @param
toValue
the value that corresponds to a timing of 1.
46
public LinearColor(Color fromValue, Color
toValue
, Timing timing)
49
this.
toValue
=
toValue
;
64
t == 1.0 ?
toValue
:
65
new Color((int)(fromValue.getRed() + t * (
toValue
.getRed() - fromValue.getRed())),
66
(int)(fromValue.getGreen() + t * (
toValue
.getGreen() - fromValue.getGreen())),
67
(int)(fromValue.getBlue() + t * (
toValue
.getBlue() - fromValue.getBlue())));
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableImage.cpp
55
RefPtr<CSSValue>
toValue
= image->toCSSValue();
57
if (
toValue
->isImageGeneratorValue())
59
if (!
toValue
->isImageValue() && !
toValue
->isImageGeneratorValue()) {
63
toValue
= CSSImageValue::create(resource->url(), image->m_image.get());
65
RefPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::create(fromValue,
toValue
);
/packages/apps/Launcher2/src/com/android/launcher2/
InterruptibleInOutAnimator.java
48
public InterruptibleInOutAnimator(View view, long duration, float fromValue, float
toValue
) {
49
mAnimator = LauncherAnimUtils.ofFloat(view, fromValue,
toValue
).setDuration(duration);
52
mOriginalToValue =
toValue
;
64
final float
toValue
= (direction == IN) ? mOriginalToValue : mOriginalFromValue;
71
// TODO: We don't really need to do the animation if startValue ==
toValue
, but
79
mAnimator.setFloatValues(startValue,
toValue
);
/packages/apps/Launcher3/src/com/android/launcher3/
InterruptibleInOutAnimator.java
48
public InterruptibleInOutAnimator(View view, long duration, float fromValue, float
toValue
) {
49
mAnimator = LauncherAnimUtils.ofFloat(view, fromValue,
toValue
).setDuration(duration);
52
mOriginalToValue =
toValue
;
64
final float
toValue
= (direction == IN) ? mOriginalToValue : mOriginalFromValue;
71
// TODO: We don't really need to do the animation if startValue ==
toValue
, but
79
mAnimator.setFloatValues(startValue,
toValue
);
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSCrossfadeValue.h
46
static PassRefPtr<CSSCrossfadeValue> create(PassRefPtr<CSSValue> fromValue, PassRefPtr<CSSValue>
toValue
)
48
return adoptRef(new CSSCrossfadeValue(fromValue,
toValue
));
71
CSSCrossfadeValue(PassRefPtr<CSSValue> fromValue, PassRefPtr<CSSValue>
toValue
)
74
, m_toValue(
toValue
)
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLength.h
130
float
toValue
= valueInSpecifiedUnits();
132
length.newValueSpecifiedUnits(fromType, WebCore::blend(fromValue,
toValue
, progress), exceptionState);
134
length.newValueSpecifiedUnits(toType, WebCore::blend(fromValue,
toValue
, progress), exceptionState);
152
float
toValue
= valueInSpecifiedUnits();
153
length.newValueSpecifiedUnits(toType, WebCore::blend(fromValue,
toValue
, progress), exceptionState);
SVGPathBlender.cpp
57
float
toValue
= blendMode == BlendHorizontal ? m_toCurrentPoint.x() : m_toCurrentPoint.y();
60
float animValue = blend(from, m_fromMode == AbsoluteCoordinates ? to +
toValue
: to -
toValue
, m_progress);
66
float currentValue = blend(fromValue,
toValue
, m_progress);
SVGAnimationElement.cpp
294
else if (!
toValue
().isEmpty())
333
String SVGAnimationElement::
toValue
() const
582
String to =
toValue
();
SVGAnimationElement.h
181
String
toValue
() const;
/frameworks/base/core/java/com/android/internal/widget/
DrawableHolder.java
67
* @param
toValue
the target value
71
String property, float
toValue
, boolean replace) {
75
ObjectAnimator anim = ObjectAnimator.ofFloat(this, property,
toValue
);
/frameworks/base/core/java/android/view/
ViewPropertyAnimator.java
[
all
...]
/external/proguard/lib/
proguardgui.jar
/prebuilts/tools/common/proguard/proguard4.7/lib/
proguardgui.jar
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding_1.3.100.I20100601-0800.jar
/external/chromium_org/v8/test/mjsunit/harmony/
proxies.js
[
all
...]
/external/v8/test/mjsunit/harmony/
proxies.js
[
all
...]
Completed in 1008 milliseconds