Home
last modified time | relevance | path

Searched refs:fromValue (Results 1 – 25 of 26) sorted by relevance

12

/external/proguard/src/proguard/gui/splash/
DLinearColor.java32 private final Color fromValue; field in LinearColor
46 public LinearColor(Color fromValue, Color toValue, Timing timing) in LinearColor() argument
48 this.fromValue = fromValue; in LinearColor()
63 t == 0.0 ? fromValue : 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()
DLinearDouble.java30 private final double fromValue; field in LinearDouble
41 public LinearDouble(double fromValue, double toValue, Timing timing) in LinearDouble() argument
43 this.fromValue = fromValue; in LinearDouble()
53 return fromValue + timing.getTiming(time) * (toValue - fromValue); in getDouble()
DLinearInt.java30 private final int fromValue; field in LinearInt
41 public LinearInt(int fromValue, int toValue, Timing timing) in LinearInt() argument
43 this.fromValue = fromValue; in LinearInt()
53 return (int) (fromValue + timing.getTiming(time) * (toValue - fromValue)); in getInt()
/external/fonttools/Lib/fontTools/ttLib/tables/
D_a_v_a_r.py70 fromValue, toValue = struct.unpack(">hh", data[pos:pos+4])
71 segments[fi2fl(fromValue, 14)] = fi2fl(toValue, 14)
95 fromValue = str2fl(elementAttrs["from"], 14)
97 if fromValue in segment:
99 fromValue, axis)
100 segment[fromValue] = toValue
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DLazyFieldLiteTest.java160 LazyFieldLite field1 = LazyFieldLite.fromValue(message1); in testMergeOneNotParsed()
167 field1 = LazyFieldLite.fromValue(message1); in testMergeOneNotParsed()
177 LazyFieldLite valid = LazyFieldLite.fromValue(message); in testMergeInvalid()
197 LazyFieldLite field = LazyFieldLite.fromValue(messageWithExtensions); in testMergeKeepsExtensionsWhenPossible()
203 field.merge(LazyFieldLite.fromValue(messageWithExtensions)); in testMergeKeepsExtensionsWhenPossible()
207 field = LazyFieldLite.fromValue(messageWithExtensions); in testMergeKeepsExtensionsWhenPossible()
216 other = LazyFieldLite.fromValue(messageWithExtensions); in testMergeKeepsExtensionsWhenPossible()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/
DEnumDefaultReadTest.java210 private <T> void _verifyOkDeserialization(ObjectReader reader, String fromValue, in _verifyOkDeserialization() argument
214 assertEquals(expValue, reader.forType(toValueType).readValue(quote(fromValue))); in _verifyOkDeserialization()
218 final String fromValue, final Class<T> toValueType) in _verifyFailingDeserialization() argument
222 reader.forType(toValueType).readValue(quote(fromValue)); in _verifyFailingDeserialization()
/external/flatbuffers/dart/example/
Dmonster_my_game.sample_generated.dart14 factory Color.fromValue(int value) {
47 new Color.fromValue(const fb.Int8Reader().read(bc, offset));
54 factory EquipmentTypeId.fromValue(int value) {
86 new EquipmentTypeId.fromValue(const fb.Uint8Reader().read(bc, offset));
185 Color get color => new Color.fromValue(const fb.Int8Reader().vTableGet(_bc, _bcOffset, 16, 2));
187 …EquipmentTypeId get equippedType => new EquipmentTypeId.fromValue(const fb.Uint8Reader().vTableGet…
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
DAspectRatio.java40 public static AspectRatio fromValue(int value) { in fromValue() method in AspectRatio
DSeqParameterSet.java198 vuip.aspect_ratio = AspectRatio.fromValue((int) reader.readNBit(8, in ReadVUIParameters()
/external/flatbuffers/dart/test/
Dmonster_test_my_game.example_generated.dart19 factory Color.fromValue(int value) {
55 new Color.fromValue(const fb.Uint8Reader().read(bc, offset));
62 factory Race.fromValue(int value) {
96 new Race.fromValue(const fb.Int8Reader().read(bc, offset));
103 factory AnyTypeId.fromValue(int value) {
137 new AnyTypeId.fromValue(const fb.Uint8Reader().read(bc, offset));
144 factory AnyUniqueAliasesTypeId.fromValue(int value) {
178 new AnyUniqueAliasesTypeId.fromValue(const fb.Uint8Reader().read(bc, offset));
185 factory AnyAmbiguousAliasesTypeId.fromValue(int value) {
219 new AnyAmbiguousAliasesTypeId.fromValue(const fb.Uint8Reader().read(bc, offset));
[all …]
/external/flatbuffers/tests/
Dmonster_test_my_game.example_generated.dart17 factory Color.fromValue(int value) {
53 new Color.fromValue(const fb.Uint8Reader().read(bc, offset));
60 factory Race.fromValue(int value) {
94 new Race.fromValue(const fb.Int8Reader().read(bc, offset));
101 factory AnyTypeId.fromValue(int value) {
135 new AnyTypeId.fromValue(const fb.Uint8Reader().read(bc, offset));
142 factory AnyUniqueAliasesTypeId.fromValue(int value) {
176 new AnyUniqueAliasesTypeId.fromValue(const fb.Uint8Reader().read(bc, offset));
183 factory AnyAmbiguousAliasesTypeId.fromValue(int value) {
217 new AnyAmbiguousAliasesTypeId.fromValue(const fb.Uint8Reader().read(bc, offset));
[all …]
/external/flatbuffers/tests/namespace_test/
Dnamespace_test1_namespace_a.namespace_b_generated.dart14 factory EnumInNestedNS.fromValue(int value) {
47 new EnumInNestedNS.fromValue(const fb.Int8Reader().read(bc, offset));
Dnamespace_test2_namespace_a_generated.dart24 …EnumInNestedNS get fooEnum => new EnumInNestedNS.fromValue(const fb.Int8Reader().vTableGet(_bc, _b…
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DObjectMapper.java3241 public <T extends JsonNode> T valueToTree(Object fromValue)
3245 if (fromValue == null) {
3254 writeValue(buf, fromValue);
4191 public <T> T convertValue(Object fromValue, Class<T> toValueType)
4194 return (T) _convert(fromValue, _typeFactory.constructType(toValueType));
4201 public <T> T convertValue(Object fromValue, TypeReference<T> toValueTypeRef)
4204 return (T) _convert(fromValue, _typeFactory.constructType(toValueTypeRef));
4211 public <T> T convertValue(Object fromValue, JavaType toValueType)
4214 return (T) _convert(fromValue, toValueType);
4226 protected Object _convert(Object fromValue, JavaType toValueType)
[all …]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DLazyFieldLite.java131 public static LazyFieldLite fromValue(MessageLite value) { in fromValue() method in LazyFieldLite
/external/llvm-project/clang/docs/
DObjectiveCLiterals.rst590 animation.fromValue = @(layer.position);
595 animation.fromValue = [NSValue valueWithCGPoint:layer.position];
/external/clang/docs/
DObjectiveCLiterals.rst590 animation.fromValue = @(layer.position);
595 animation.fromValue = [NSValue valueWithCGPoint:layer.position];
/external/proguard/lib/
Dproguardgui.jarMETA-INF/ META-INF/MANIFEST.MF proguard/gui/ proguard/gui/ ...
/external/guice/extensions/struts2/lib/
Dcore-3.1.1.jarMETA-INF/ org/ org/eclipse/ org/eclipse/jdt/ org/eclipse ...
/external/icu/tools/srcgen/currysrc/libs/
Dorg.eclipse.jdt.core_3.14.0.v20180528-0519.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_ ...
/external/dexmaker/lib/
Ddalvik-dx-9.0.0_r3.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/ ...
/external/kotlinx.metadata/
Dkotlinx-metadata-jvm-0.1.0.jarMETA-INF/ META-INF/MANIFEST.MF kotlinx/ kotlinx/metadata/ kotlinx/ ...
/external/guice/extensions/persist/lib/
Dhibernate3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/ ...
/external/error_prone/error_prone/
Derror_prone_core-2.3.2-with-dependencies.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META- ...
/external/dagger2/java/dagger/internal/codegen/kythe/
Dkythe_plugin_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com ...

12