/external/proguard/src/proguard/evaluation/value/ |
D | DoubleValue.java | 30 public abstract class DoubleValue extends Category2Value class 46 public abstract DoubleValue negate(); in negate() 70 public abstract DoubleValue generalize(DoubleValue other); in generalize() 76 public abstract DoubleValue add(DoubleValue other); in add() 81 public abstract DoubleValue subtract(DoubleValue other); in subtract() 86 public abstract DoubleValue subtractFrom(DoubleValue other); in subtractFrom() 91 public abstract DoubleValue multiply(DoubleValue other); in multiply() 96 public abstract DoubleValue divide(DoubleValue other); in divide() 101 public abstract DoubleValue divideOf(DoubleValue other); in divideOf() 106 public abstract DoubleValue remainder(DoubleValue other); in remainder() [all …]
|
D | SpecificDoubleValue.java | 28 abstract class SpecificDoubleValue extends DoubleValue 32 public DoubleValue negate() in negate() 55 public DoubleValue generalize(DoubleValue other) in generalize() 60 public DoubleValue add(DoubleValue other) in add() 65 public DoubleValue subtract(DoubleValue other) in subtract() 70 public DoubleValue subtractFrom(DoubleValue other) in subtractFrom() 75 public DoubleValue multiply(DoubleValue other) in multiply() 80 public DoubleValue divide(DoubleValue other) in divide() 85 public DoubleValue divideOf(DoubleValue other) in divideOf() 90 public DoubleValue remainder(DoubleValue other) in remainder() [all …]
|
D | UnknownDoubleValue.java | 28 public class UnknownDoubleValue extends DoubleValue 32 public DoubleValue negate() in negate() 55 public DoubleValue generalize(DoubleValue other) in generalize() 60 public DoubleValue add(DoubleValue other) in add() 65 public DoubleValue subtract(DoubleValue other) in subtract() 70 public DoubleValue subtractFrom(DoubleValue other) in subtractFrom() 75 public DoubleValue multiply(DoubleValue other) in multiply() 80 public DoubleValue divide(DoubleValue other) in divide() 85 public DoubleValue divideOf(DoubleValue other) in divideOf() 90 public DoubleValue remainder(DoubleValue other) in remainder() [all …]
|
D | ParticularDoubleValue.java | 52 public DoubleValue negate() in negate() 75 public DoubleValue generalize(DoubleValue other) in generalize() 80 public DoubleValue add(DoubleValue other) in add() 87 public DoubleValue subtract(DoubleValue other) in subtract() 94 public DoubleValue subtractFrom(DoubleValue other) in subtractFrom() 101 public DoubleValue multiply(DoubleValue other) in multiply() 106 public DoubleValue divide(DoubleValue other) in divide() 111 public DoubleValue divideOf(DoubleValue other) in divideOf() 116 public DoubleValue remainder(DoubleValue other) in remainder() 121 public DoubleValue remainderOf(DoubleValue other) in remainderOf() [all …]
|
D | CompositeDoubleValue.java | 38 private final DoubleValue doubleValue1; 40 private final DoubleValue doubleValue2; 47 public CompositeDoubleValue(DoubleValue doubleValue1, in CompositeDoubleValue() 49 DoubleValue doubleValue2) in CompositeDoubleValue()
|
D | NegatedDoubleValue.java | 30 private final DoubleValue doubleValue; 36 public NegatedDoubleValue(DoubleValue doubleValue) in NegatedDoubleValue() 44 public DoubleValue negate() in negate()
|
D | ParticularValueFactory.java | 46 static final DoubleValue DOUBLE_VALUE_0 = new ParticularDoubleValue(0.0); 47 static final DoubleValue DOUBLE_VALUE_1 = new ParticularDoubleValue(1.0); 91 public DoubleValue createDoubleValue(double value) in createDoubleValue()
|
D | ValueFactory.java | 37 static final DoubleValue DOUBLE_VALUE = new UnknownDoubleValue(); 124 public DoubleValue createDoubleValue() in createDoubleValue() 132 public DoubleValue createDoubleValue(double value) in createDoubleValue()
|
/external/protobuf/php/tests/ |
D | wrapper_type_setters_test.php | 9 use Google\Protobuf\DoubleValue; alias 63 …[TestWrapperSetters::class, DoubleValue::class, "setDoubleValue", "setDoubleValueUnwrapped", "getD… 64 [1.1, new DoubleValue(["value" => 1.1])], 65 [2.2, new DoubleValue(["value" => 2.2])], 67 [0, new DoubleValue()], 130 …[TestWrapperSetters::class, DoubleValue::class, "setDoubleValueOneof", "setDoubleValueOneofUnwrapp… 131 [1.1, new DoubleValue(["value" => 1.1])], 132 [2.2, new DoubleValue(["value" => 2.2])], 134 [0, new DoubleValue()], 163 [TestWrapperSetters::class, "setDoubleValueUnwrapped", new DoubleValue()], [all …]
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | Metrics.cs | 81 case ValueOneofCase.DoubleValue: in GaugeResponse() 82 DoubleValue = other.DoubleValue; in GaugeResponse() 122 public double DoubleValue { property in Grpc.Testing.GaugeResponse 123 get { return valueCase_ == ValueOneofCase.DoubleValue ? (double) value_ : 0D; } 126 valueCase_ = ValueOneofCase.DoubleValue; 146 DoubleValue = 3, enumerator 176 …otobufEqualityComparers.BitwiseDoubleEqualityComparer.Equals(DoubleValue, other.DoubleValue)) retu… in Equals() 187 …Case_ == ValueOneofCase.DoubleValue) hash ^= pbc::ProtobufEqualityComparers.BitwiseDoubleEqualityC… in GetHashCode() 211 if (valueCase_ == ValueOneofCase.DoubleValue) { in WriteTo() 213 output.WriteDouble(DoubleValue); in WriteTo() [all …]
|
/external/turbine/java/com/google/turbine/model/ |
D | Const.java | 76 public DoubleValue asDouble() { in asDouble() 217 public DoubleValue asDouble() { in asDouble() 218 return new DoubleValue((double) value); in asDouble() 300 public DoubleValue asDouble() { in asDouble() 301 return new DoubleValue((double) value); in asDouble() 383 public DoubleValue asDouble() { in asDouble() 384 return new DoubleValue((double) value); in asDouble() 469 public DoubleValue asDouble() { in asDouble() 470 return new DoubleValue((double) value); in asDouble() 495 public static class DoubleValue extends Value { class in Const [all …]
|
/external/golang-protobuf/ptypes/wrappers/ |
D | wrappers.pb.go | 26 type DoubleValue struct { struct 34 func (m *DoubleValue) Reset() { *m = DoubleValue{} } argument 35 func (m *DoubleValue) String() string { return proto.CompactTextString(m) } argument 36 func (*DoubleValue) ProtoMessage() {} argument 37 func (*DoubleValue) Descriptor() ([]byte, []int) { argument 41 func (*DoubleValue) XXX_WellKnownType() string { return "DoubleValue" } argument 43 func (m *DoubleValue) XXX_Unmarshal(b []byte) error { argument 46 func (m *DoubleValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument 49 func (m *DoubleValue) XXX_Merge(src proto.Message) { argument 52 func (m *DoubleValue) XXX_Size() int { argument [all …]
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/ext/ |
D | JsonValueExtTypeIdTest.java | 43 public static class DoubleValue { 45 public DoubleValue() { value = 1234.25; } 57 public DoubleValue getValue(){ return new DoubleValue(); }
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | DoubleValueImpl.java | 31 implements DoubleValue { 41 if ((obj != null) && (obj instanceof DoubleValue)) { in equals() 42 return (value == ((DoubleValue)obj).value()) && in equals() 49 public int compareTo(DoubleValue obj) { in compareTo()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/ |
D | LazyDoubleValue.java | 35 import com.sun.jdi.DoubleValue; 38 …ic class LazyDoubleValue extends LazyComparablePrimitiveValue<DoubleValue> implements DoubleValue {
|
/external/protobuf/src/google/protobuf/ |
D | wrappers.pb.cc | 21 ::PROTOBUF_NAMESPACE_ID::internal::ExplicitlyConstructed<DoubleValue> _instance; 89 new (ptr) PROTOBUF_NAMESPACE_ID::DoubleValue(); in InitDefaultsscc_info_DoubleValue_google_2fprotobuf_2fwrappers_2eproto() 92 PROTOBUF_NAMESPACE_ID::DoubleValue::InitAsDefaultInstance(); in InitDefaultsscc_info_DoubleValue_google_2fprotobuf_2fwrappers_2eproto() 188 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::DoubleValue, _internal_metadata_), 192 PROTOBUF_FIELD_OFFSET(PROTOBUF_NAMESPACE_ID::DoubleValue, value_), 243 { 0, -1, sizeof(PROTOBUF_NAMESPACE_ID::DoubleValue)}, 308 void DoubleValue::InitAsDefaultInstance() { in InitAsDefaultInstance() 310 class DoubleValue::_Internal { 314 DoubleValue::DoubleValue() in DoubleValue() function in DoubleValue 319 DoubleValue::DoubleValue(::PROTOBUF_NAMESPACE_ID::Arena* arena) in DoubleValue() function in DoubleValue [all …]
|
D | wrappers.pb.h | 64 class DoubleValue; variable 89 … PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::DoubleValue* Arena::CreateMaybeMessage<PROTOBUF_NAMESPACE_… 101 class PROTOBUF_EXPORT DoubleValue : 104 DoubleValue(); 105 virtual ~DoubleValue(); 107 DoubleValue(const DoubleValue& from); 108 DoubleValue(DoubleValue&& from) noexcept in DoubleValue() function 109 : DoubleValue() { in DoubleValue() 113 inline DoubleValue& operator=(const DoubleValue& from) { 117 inline DoubleValue& operator=(DoubleValue&& from) noexcept { [all …]
|
D | unittest_well_known_types.proto | 33 google.protobuf.DoubleValue double_field = 10; 58 repeated google.protobuf.DoubleValue double_field = 10; 80 google.protobuf.DoubleValue double_field = 10; 105 map<int32,google.protobuf.DoubleValue> double_field = 10;
|
/external/oj-libjdwp/src/share/classes/com/sun/jdi/ |
D | DoubleValue.java | 38 public interface DoubleValue extends PrimitiveValue, Comparable<DoubleValue> { interface
|
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Wrappers.cs | 40 …peof(global::Google.Protobuf.WellKnownTypes.DoubleValue), global::Google.Protobuf.WellKnownTypes.D… in WrappersReflection() 60 public sealed partial class DoubleValue : pb::IMessage<DoubleValue> { class 61 …te static readonly pb::MessageParser<DoubleValue> _parser = new pb::MessageParser<DoubleValue>(() … 64 public static pb::MessageParser<DoubleValue> Parser { get { return _parser; } } 77 public DoubleValue() { in DoubleValue() method in Google.Protobuf.WellKnownTypes.DoubleValue 84 public DoubleValue(DoubleValue other) : this() { in DoubleValue() method in Google.Protobuf.WellKnownTypes.DoubleValue 90 public DoubleValue Clone() { in Clone() 91 return new DoubleValue(this); in Clone() 110 return Equals(other as DoubleValue); in Equals() 114 public bool Equals(DoubleValue other) { in Equals() [all …]
|
/external/rust/crates/protobuf/src/well_known_types/ |
D | wrappers.rs | 24 pub struct DoubleValue { struct 34 impl<'a> ::std::default::Default for &'a DoubleValue { argument 35 fn default() -> &'a DoubleValue { in default() 36 <DoubleValue as crate::Message>::default_instance() in default() 40 impl DoubleValue { implementation 41 pub fn new() -> DoubleValue { in new() 61 impl crate::Message for DoubleValue { implementation 131 fn new() -> DoubleValue { in new() 132 DoubleValue::new() in new() 141 |m: &DoubleValue| { &m.value }, in descriptor_static() [all …]
|
/external/protobuf/php/tests/proto/ |
D | test_wrapper_type_setters.proto | 8 google.protobuf.DoubleValue double_value = 1; 19 google.protobuf.DoubleValue double_value_oneof = 10;
|
/external/turbine/javatests/com/google/turbine/model/ |
D | ConstTest.java | 53 .addEqualityGroup(new Const.DoubleValue(1), new Const.DoubleValue(1)) in equalsTest() 54 .addEqualityGroup(new Const.DoubleValue(2), new Const.DoubleValue(2)) in equalsTest()
|
/external/protobuf/csharp/compatibility_tests/v3.0.0/protos/src/google/protobuf/ |
D | unittest_well_known_types.proto | 33 google.protobuf.DoubleValue double_field = 10; 58 repeated google.protobuf.DoubleValue double_field = 10; 80 google.protobuf.DoubleValue double_field = 10; 105 map<int32,google.protobuf.DoubleValue> double_field = 10;
|
/external/llvm-project/clang-tools-extra/clang-tidy/readability/ |
D | MagicNumbersCheck.cpp | 97 llvm::APFloat DoubleValue(llvm::APFloat::IEEEdouble()); in MagicNumbersCheck() local 99 DoubleValue.convertFromString(InputValue, DefaultRoundingMode); in MagicNumbersCheck() 102 IgnoredDoublePointValues.push_back(DoubleValue.convertToDouble()); in MagicNumbersCheck()
|