Searched refs:toValue (Results 1 – 11 of 11) 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 | 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()
|
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()
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _a_v_a_r.py | 69 fromValue, toValue = struct.unpack(">hh", data[pos:pos+4]) 70 segments[fixedToFloat(fromValue, 14)] = fixedToFloat(toValue, 14) 97 toValue = safeEval(elementAttrs["to"]) 101 segment[fromValue] = toValue
|
/external/skia/modules/particles/src/ |
D | SkParticleBinding.cpp | 65 std::unique_ptr<SkParticleExternalValue> toValue(SkSL::Compiler& compiler) override { in toValue() function in SkEffectBinding 142 std::unique_ptr<SkParticleExternalValue> toValue(SkSL::Compiler& compiler) override { in toValue() function in SkPathBinding 179 std::unique_ptr<SkParticleExternalValue> toValue(SkSL::Compiler& compiler) override { in toValue() function in SkTextBinding 244 std::unique_ptr<SkParticleExternalValue> toValue(SkSL::Compiler& compiler) override { in toValue() function in SkImageBinding
|
D | SkParticleEffect.cpp | 136 auto value = binding->toValue(compiler); in prepare()
|
/external/skia/modules/particles/include/ |
D | SkParticleBinding.h | 55 virtual std::unique_ptr<SkParticleExternalValue> toValue(SkSL::Compiler&) = 0;
|
/external/icu/icu4c/source/test/intltest/ |
D | numberformattesttuple.cpp | 270 void (*toValue)(const UnicodeString &str, void *valPtr, UErrorCode &); member 352 gFieldData[fieldId].ops->toValue( in setField()
|
/external/v8/src/builtins/ |
D | array-filter.tq | 185 } label Bailout(kValue: Number, toValue: Number) deferred { 187 to = toValue;
|
/external/clang/docs/ |
D | ObjectiveCLiterals.rst | 591 animation.toValue = @(newPosition); 596 animation.toValue = [NSValue valueWithCGPoint:newPosition];
|
/external/tensorflow/tensorflow/examples/ios/camera/ |
D | CameraExampleViewController.mm | 596 colorAnimation.toValue = (id)[UIColor whiteColor].CGColor;
|