Searched refs:toValue (Results 1 – 6 of 6) sorted by relevance
/external/proguard/src/proguard/gui/splash/ |
D | LinearColor.java | 33 private final Color toValue; field in LinearColor 46 public LinearColor(Color fromValue, Color toValue, Timing timing) in LinearColor() argument 49 this.toValue = toValue; in LinearColor() 64 t == 1.0 ? toValue : in getColor() 65 … new Color((int)(fromValue.getRed() + t * (toValue.getRed() - fromValue.getRed())), in getColor() 66 … (int)(fromValue.getGreen() + t * (toValue.getGreen() - fromValue.getGreen())), in getColor() 67 … (int)(fromValue.getBlue() + t * (toValue.getBlue() - fromValue.getBlue()))); in getColor()
|
D | LinearDouble.java | 31 private final double toValue; field in LinearDouble 41 public LinearDouble(double fromValue, double toValue, Timing timing) in LinearDouble() argument 44 this.toValue = toValue; in LinearDouble() 53 return fromValue + timing.getTiming(time) * (toValue - fromValue); in getDouble()
|
D | LinearInt.java | 31 private final int toValue; field in LinearInt 41 public LinearInt(int fromValue, int toValue, Timing timing) in LinearInt() argument 44 this.toValue = toValue; in LinearInt() 53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue)); in getInt()
|
/external/icu/icu4c/source/test/intltest/ |
D | numberformattesttuple.cpp | 273 void (*toValue)(const UnicodeString &str, void *valPtr, UErrorCode &); member 353 gFieldData[fieldId].ops->toValue( in setField()
|
/external/clang/docs/ |
D | ObjectiveCLiterals.rst | 591 animation.toValue = @(newPosition); 596 animation.toValue = [NSValue valueWithCGPoint:newPosition];
|
/external/v8/src/inspector/ |
D | v8-debugger-agent-impl.cc | 1105 breakAuxData = obj->toValue(); in didPause()
|