HomeSort by relevance Sort by last modified time
    Searched refs:fromValue (Results 1 - 17 of 17) 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/WebKitTools/QtLauncher/
webview.cpp 112 setProperty("mouseButtons", QVariant::fromValue(int(event->buttons())));
113 setProperty("keyboardModifiers", QVariant::fromValue(int(event->modifiers())));
120 setProperty("mouseButtons", QVariant::fromValue(int(event->buttons())));
121 setProperty("keyboardModifiers", QVariant::fromValue(int(event->modifiers())));
  /external/webkit/WebCore/platform/graphics/android/
AndroidAnimation.h 64 static PassRefPtr<AndroidOpacityAnimation> create(float fromValue,
68 AndroidOpacityAnimation(float fromValue, float toValue,
AndroidAnimation.cpp 117 float fromValue,
122 return adoptRef(new AndroidOpacityAnimation(fromValue, toValue,
126 AndroidOpacityAnimation::AndroidOpacityAnimation(float fromValue, float toValue,
130 m_fromValue(fromValue), m_toValue(toValue)
  /external/webkit/WebCore/bridge/qt/
qt_pixmapruntime.cpp 91 v = QVariant::fromValue<QPixmap>(pxm);
124 v = QVariant::fromValue<QImage>(image);
280 data = QVariant::fromValue<QPixmap>(pxm);
293 data = QVariant::fromValue<QImage>(img);
303 return QVariant::fromValue<QPixmap>(QPixmap());
305 return QVariant::fromValue<QImage>(QImage());
317 ? QVariant::fromValue<QPixmap>(*pxm)
318 : QVariant::fromValue<QImage>(pxm->toImage());
328 return QVariant::fromValue<QPixmap>(inst->toPixmap());
330 return QVariant::fromValue<QImage>(inst->toImage())
    [all...]
qt_instance.cpp 341 val = QVariant::fromValue((QObject*) m_childObject);
qt_runtime.cpp 639 ret = QVariant::fromValue(result);
658 ret = QVariant::fromValue(result);
668 ret = QVariant::fromValue(result);
690 ret = QVariant::fromValue(result);
709 ret = QVariant::fromValue(result);
719 ret = QVariant::fromValue(result);
    [all...]
  /external/webkit/WebCore/platform/
Length.h 184 int fromValue = from.isZero() ? 0 : from.value();
186 return Length(int(fromValue + (toValue - fromValue) * progress), resultType);
  /external/webkit/WebCore/svg/
SVGAnimationElement.h 76 String fromValue() const;
SVGAnimationElement.cpp 196 return fromValue().isEmpty() ? ToAnimation : FromToAnimation;
198 return fromValue().isEmpty() ? ByAnimation : FromByAnimation;
242 String SVGAnimationElement::fromValue() const
483 m_animationValid = calculateFromAndToValues(fromValue(), toValue());
489 m_animationValid = calculateFromAndByValues(fromValue(), byValue());
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsLayerCA.mm     [all...]
  /external/proguard/lib/
proguardgui.jar 
  /external/webkit/WebKit/qt/Api/
qwebview.cpp 308 setProperty("kineticScroller", QVariant::fromValue(scroller));
  /prebuilt/common/ecj/
ecj.jar 

Completed in 223 milliseconds