/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/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...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
InterruptibleInOutAnimator.java | 47 public InterruptibleInOutAnimator(long duration, float fromValue, float toValue) { 48 mAnimator = ValueAnimator.ofFloat(fromValue, toValue).setDuration(duration); 50 mOriginalFromValue = fromValue;
|
/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/bridge/qt/ |
qt_pixmapruntime.cpp | 277 data = QVariant::fromValue<QPixmap>(pixmap); 291 data = QVariant::fromValue<QImage>(image); 323 ? QVariant::fromValue<QPixmap>(*pixmap) 324 : QVariant::fromValue<QImage>(pixmap->toImage()); 334 return QVariant::fromValue<QPixmap>(instance->toPixmap()); 337 return QVariant::fromValue<QImage>(instance->toImage()); 342 return QVariant::fromValue<QPixmap>(QPixmap()); 344 return QVariant::fromValue<QImage>(QImage());
|
qt_runtime.cpp | 590 ret = QVariant::fromValue(realRe); 601 ret = QVariant::fromValue(re); 613 ret = QVariant::fromValue(qtinst->getObject()); 624 ret = QVariant::fromValue(nullobj); 637 ret = QVariant::fromValue((void *)qtinst->getObject()); 647 ret = QVariant::fromValue((void*)0); 679 ret = QVariant::fromValue(result); 698 ret = QVariant::fromValue(result); 708 ret = QVariant::fromValue(result); 730 ret = QVariant::fromValue(result) [all...] |
qt_instance.cpp | 354 val = QVariant::fromValue((QObject*) m_childObject);
|
/external/webkit/Tools/QtTestBrowser/ |
webview.cpp | 250 setProperty("mouseButtons", QVariant::fromValue(int(event->buttons()))); 251 setProperty("keyboardModifiers", QVariant::fromValue(int(event->modifiers()))); 258 setProperty("mouseButtons", QVariant::fromValue(int(event->buttons()))); 259 setProperty("keyboardModifiers", QVariant::fromValue(int(event->modifiers())));
|
/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/WebKit/qt/tests/qdeclarativewebview/ |
tst_qdeclarativewebview.cpp | 299 wv->setProperty("newWindowComponent", QVariant::fromValue(&substituteComponent)); 300 QCOMPARE(wv->property("newWindowComponent"), QVariant::fromValue(&substituteComponent)); 303 wv->setProperty("newWindowComponent", QVariant::fromValue(&substituteComponent)); 306 wv->setProperty("newWindowComponent", QVariant::fromValue((QDeclarativeComponent*)0)); 326 wv->setProperty("newWindowParent", QVariant::fromValue(newWindowParent)); 330 QCOMPARE(wv->property("newWindowParent"), QVariant::fromValue(newWindowParent)); 333 wv->setProperty("newWindowParent", QVariant::fromValue(newWindowParent)); 336 wv->setProperty("newWindowParent", QVariant::fromValue((QDeclarativeItem*)0));
|
/external/webkit/Source/WebCore/svg/ |
SVGAnimationElement.h | 74 String fromValue() const;
|
SVGAnimationElement.cpp | 228 return fromValue().isEmpty() ? ToAnimation : FromToAnimation; 230 return fromValue().isEmpty() ? ByAnimation : FromByAnimation; 274 String SVGAnimationElement::fromValue() const 507 String from = fromValue();
|
SVGPathBlender.cpp | 53 float fromValue = blendMode == BlendHorizontal ? m_fromCurrentPoint.x() : m_fromCurrentPoint.y(); 63 float currentValue = blendAnimatedFloat(fromValue, toValue, m_progress);
|
/external/webkit/Source/WebKit/qt/tests/qwebframe/ |
tst_qwebframe.cpp | 116 m_variantMapValue.insert("c", QVariant::fromValue<QObject*>(this)); 311 m_actuals << QVariant::fromValue(lst); 326 m_actuals << QVariant::fromValue(lst); 331 m_actuals << QVariant::fromValue(obj); 336 m_actuals << QVariant::fromValue(brush); 341 m_actuals << QVariant::fromValue(style); 345 m_actuals << QVariant::fromValue(arg); 349 m_actuals << QVariant::fromValue(arg); 353 m_actuals << QVariant::fromValue(arg); 357 m_actuals << QVariant::fromValue(arg1) << qVariantFromValue(arg2) [all...] |
/external/webkit/Source/WebCore/platform/graphics/ca/ |
GraphicsLayerCA.cpp | [all...] |
/external/webkit/Source/WebCore/platform/graphics/qt/ |
GraphicsLayerQt.cpp | [all...] |
MediaPlayerPrivateQt.cpp | 228 request.setHeader(QNetworkRequest::CookieHeader, QVariant::fromValue(cookies));
|
/external/proguard/lib/ |
proguardgui.jar | |
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
DumpRenderTreeSupportQt.cpp | 958 res << QVariant::fromValue(QWebElement(nodes->item(i))); 960 res << QVariant::fromValue(QDRTNode(nodes->item(i))); [all...] |
/external/webkit/Source/JavaScriptCore/runtime/ |
ArrayPrototype.cpp | [all...] |
/external/webkit/Source/WebKit/qt/Api/ |
qwebview.cpp | 314 setProperty("kineticScroller", QVariant::fromValue(scroller)); [all...] |
/external/webkit/Source/WebCore/platform/graphics/ca/mac/ |
PlatformCAAnimationMac.mm | 405 [static_cast<CABasicAnimation*>(m_animation.get()) setFromValue:[otherAnimation fromValue]];
|
/prebuilt/common/ecj/ |
ecj.jar | |