OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fromValue
(Results
1 - 13
of
13
) sorted by null
/external/proguard/src/proguard/gui/splash/
LinearDouble.java
30
private final double
fromValue
;
37
* @param
fromValue
the value that corresponds to a timing of 0.
41
public LinearDouble(double
fromValue
, double toValue, Timing timing)
43
this.
fromValue
=
fromValue
;
53
return
fromValue
+ timing.getTiming(time) * (toValue -
fromValue
);
LinearInt.java
30
private final int
fromValue
;
37
* @param
fromValue
the value that corresponds to a timing of 0.
41
public LinearInt(int
fromValue
, int toValue, Timing timing)
43
this.
fromValue
=
fromValue
;
53
return (int) (
fromValue
+ timing.getTiming(time) * (toValue -
fromValue
));
LinearColor.java
32
private final Color
fromValue
;
42
* @param
fromValue
the value that corresponds to a timing of 0.
46
public LinearColor(Color
fromValue
, Color toValue, Timing timing)
48
this.
fromValue
=
fromValue
;
63
t == 0.0 ?
fromValue
:
65
new Color((int)(
fromValue
.getRed() + t * (toValue.getRed() -
fromValue
.getRed())),
66
(int)(
fromValue
.getGreen() + t * (toValue.getGreen() -
fromValue
.getGreen()))
[
all
...]
/external/webkit/Source/WebCore/platform/
Length.h
196
float
fromValue
= from.isZero() ? 0 : from.value();
198
return Length(
fromValue
+ (toValue -
fromValue
) * progress, resultType);
/external/webkit/Source/WebCore/platform/graphics/android/
AndroidAnimation.cpp
265
FloatAnimationValue*
fromValue
= (FloatAnimationValue*) m_operations->at(from);
268
XLOG("[layer %d] opacity
fromValue
%x, key %.2f, toValue %x, key %.2f for progress %.2f",
270
fromValue
,
fromValue
->keyTime(),
276
const TimingFunction* timingFunction =
fromValue
->timingFunction();
277
progress = applyTimingFunction(
fromValue
->keyTime(), toValue->keyTime(),
281
float value =
fromValue
->value() + ((toValue->value() -
fromValue
->value()) * progress);
317
TransformAnimationValue*
fromValue
= (TransformAnimationValue*) m_operations->at(from);
320
XLOG("[layer %d]
fromValue
%x, key %.2f, toValue %x, key %.2f for progress %.2f"
[
all
...]
/external/webkit/Source/WebCore/svg/
SVGPathBlender.cpp
53
float
fromValue
= blendMode == BlendHorizontal ? m_fromCurrentPoint.x() : m_fromCurrentPoint.y();
63
float currentValue = blendAnimatedFloat(
fromValue
, toValue, m_progress);
SVGAnimationElement.cpp
228
return
fromValue
().isEmpty() ? ToAnimation : FromToAnimation;
230
return
fromValue
().isEmpty() ? ByAnimation : FromByAnimation;
274
String SVGAnimationElement::
fromValue
() const
507
String from =
fromValue
();
/external/webkit/Source/JavaScriptCore/runtime/
ArrayPrototype.cpp
[
all
...]
/frameworks/base/core/java/android/view/
ViewPropertyAnimator.java
213
NameValuesHolder(int nameConstant, float
fromValue
, float deltaValue) {
215
mFromValue =
fromValue
;
660
float
fromValue
= getValue(constantName);
661
float deltaValue = toValue -
fromValue
;
662
animatePropertyBy(constantName,
fromValue
, deltaValue);
674
float
fromValue
= getValue(constantName);
675
animatePropertyBy(constantName,
fromValue
, byValue);
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.cpp
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp
[
all
...]
/external/proguard/lib/
proguardgui.jar
/prebuilt/common/ecj/
ecj.jar
Completed in 181 milliseconds