/external/proguard/src/proguard/gui/splash/ |
D | LinearColor.java | 32 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()
|
D | LinearDouble.java | 30 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()
|
D | LinearInt.java | 30 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.py | 70 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/ |
D | LazyFieldLiteTest.java | 160 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/ |
D | EnumDefaultReadTest.java | 210 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/ |
D | monster_my_game.sample_generated.dart | 14 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/ |
D | AspectRatio.java | 40 public static AspectRatio fromValue(int value) { in fromValue() method in AspectRatio
|
D | SeqParameterSet.java | 198 vuip.aspect_ratio = AspectRatio.fromValue((int) reader.readNBit(8, in ReadVUIParameters()
|
/external/flatbuffers/dart/test/ |
D | monster_test_my_game.example_generated.dart | 19 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/ |
D | monster_test_my_game.example_generated.dart | 17 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/ |
D | namespace_test1_namespace_a.namespace_b_generated.dart | 14 factory EnumInNestedNS.fromValue(int value) { 47 new EnumInNestedNS.fromValue(const fb.Int8Reader().read(bc, offset));
|
D | namespace_test2_namespace_a_generated.dart | 24 …EnumInNestedNS get fooEnum => new EnumInNestedNS.fromValue(const fb.Int8Reader().vTableGet(_bc, _b…
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | ObjectMapper.java | 3241 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/ |
D | LazyFieldLite.java | 131 public static LazyFieldLite fromValue(MessageLite value) { in fromValue() method in LazyFieldLite
|
/external/llvm-project/clang/docs/ |
D | ObjectiveCLiterals.rst | 590 animation.fromValue = @(layer.position); 595 animation.fromValue = [NSValue valueWithCGPoint:layer.position];
|
/external/clang/docs/ |
D | ObjectiveCLiterals.rst | 590 animation.fromValue = @(layer.position); 595 animation.fromValue = [NSValue valueWithCGPoint:layer.position];
|
/external/proguard/lib/ |
D | proguardgui.jar | META-INF/
META-INF/MANIFEST.MF
proguard/gui/
proguard/gui/ ... |
/external/guice/extensions/struts2/lib/ |
D | core-3.1.1.jar | META-INF/
org/
org/eclipse/
org/eclipse/jdt/
org/eclipse ... |
/external/icu/tools/srcgen/currysrc/libs/ |
D | org.eclipse.jdt.core_3.14.0.v20180528-0519.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSE_.SF
META-INF/ECLIPSE_ ... |
/external/dexmaker/lib/ |
D | dalvik-dx-9.0.0_r3.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/android/
com/ ... |
/external/kotlinx.metadata/ |
D | kotlinx-metadata-jvm-0.1.0.jar | META-INF/
META-INF/MANIFEST.MF
kotlinx/
kotlinx/metadata/
kotlinx/ ... |
/external/guice/extensions/persist/lib/ |
D | hibernate3.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/hibernate/
org/ ... |
/external/error_prone/error_prone/ |
D | error_prone_core-2.3.2-with-dependencies.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/services/
META- ... |
/external/dagger2/java/dagger/internal/codegen/kythe/ |
D | kythe_plugin_deploy.jar | META-INF/
META-INF/MANIFEST.MF
build-data.properties
com/
com ... |