/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/ |
D | wrappers.pb.cc | 65 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DoubleValue, value_), in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto() 70 DoubleValue::default_instance_, in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto() 75 sizeof(DoubleValue), in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto() 76 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DoubleValue, _internal_metadata_), in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto() 77 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(DoubleValue, _is_default_instance_)); in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto() 212 DoubleValue_descriptor_, &DoubleValue::default_instance()); in protobuf_RegisterTypes() 234 delete DoubleValue::default_instance_; in protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto() 276 DoubleValue::default_instance_ = new DoubleValue(); in protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto() 285 DoubleValue::default_instance_->InitAsDefaultInstance(); in protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto() 307 const int DoubleValue::kValueFieldNumber; [all …]
|
D | wrappers.pb.h | 42 class DoubleValue; variable 52 class LIBPROTOBUF_EXPORT DoubleValue : public ::google::protobuf::Message /* @@protoc_insertion_poi… 54 DoubleValue(); 55 virtual ~DoubleValue(); 57 DoubleValue(const DoubleValue& from); 59 inline DoubleValue& operator=(const DoubleValue& from) { 69 static const DoubleValue& default_instance(); 71 void UnsafeArenaSwap(DoubleValue* other); 72 void Swap(DoubleValue* other); 76 inline DoubleValue* New() const { return New(NULL); } in New() [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;
|
D | wrappers.proto | 51 // The JSON representation for `DoubleValue` is JSON number. 52 message DoubleValue { message
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Wrappers.cs | 38 …peof(global::Google.Protobuf.WellKnownTypes.DoubleValue), global::Google.Protobuf.WellKnownTypes.D… in WrappersReflection() 58 public sealed partial class DoubleValue : pb::IMessage<DoubleValue> { class 59 …te static readonly pb::MessageParser<DoubleValue> _parser = new pb::MessageParser<DoubleValue>(() … 61 public static pb::MessageParser<DoubleValue> Parser { get { return _parser; } } 74 public DoubleValue() { in DoubleValue() method in Google.Protobuf.WellKnownTypes.DoubleValue 81 public DoubleValue(DoubleValue other) : this() { in DoubleValue() method in Google.Protobuf.WellKnownTypes.DoubleValue 86 public DoubleValue Clone() { in Clone() 87 return new DoubleValue(this); in Clone() 106 return Equals(other as DoubleValue); in Equals() 110 public bool Equals(DoubleValue other) { in Equals() [all …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/testdata/ |
D | default_value.proto | 91 google.protobuf.DoubleValue double_wrapper = 100; 169 google.protobuf.DoubleValue double = 1;
|
D | wrappers.proto | 63 google.protobuf.DoubleValue double = 1;
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/ |
D | json_format_proto3.proto | 121 google.protobuf.DoubleValue double_value = 7; 131 repeated google.protobuf.DoubleValue repeated_double_value = 17;
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/conformance/ |
D | conformance.proto | 222 google.protobuf.DoubleValue optional_double_wrapper = 207; 232 repeated google.protobuf.DoubleValue repeated_double_wrapper = 217;
|
D | Makefile.am | 32 com/google/protobuf/DoubleValue.java \
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Reflection/ |
D | Descriptor.cs | 4848 public double DoubleValue { property in Google.Protobuf.Reflection.UninterpretedOption 4894 if (DoubleValue != other.DoubleValue) return false; in Equals() 4907 if (DoubleValue != 0D) hash ^= DoubleValue.GetHashCode(); in GetHashCode() 4933 if (DoubleValue != 0D) { in WriteTo() 4935 output.WriteDouble(DoubleValue); in WriteTo() 4960 if (DoubleValue != 0D) { in CalculateSize() 4987 if (other.DoubleValue != 0D) { in MergeFrom() 4988 DoubleValue = other.DoubleValue; in MergeFrom() 5023 DoubleValue = input.ReadDouble(); in MergeFrom()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/ |
D | utility.cc | 119 google::protobuf::DoubleValue i; in GetDoubleFromAny()
|
D | protostream_objectwriter_test.cc | 1530 descriptors.push_back(google::protobuf::DoubleValue::descriptor()); in ProtoStreamObjectWriterAnyTest() 1548 google::protobuf::DoubleValue d; in TEST_P()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/util/src/test/java/com/google/protobuf/util/ |
D | JsonFormatTest.java | 37 import com.google.protobuf.DoubleValue; 878 anyMessage = Any.pack(DoubleValue.newBuilder().setValue(12345).build()); in testAnyFields()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/util/src/test/proto/com/google/protobuf/util/ |
D | json_test.proto | 172 google.protobuf.DoubleValue double_value = 6;
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/util/src/main/java/com/google/protobuf/util/ |
D | JsonFormat.java | 52 import com.google.protobuf.DoubleValue; 572 printers.put(DoubleValue.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypePrinters() 1089 parsers.put(DoubleValue.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf.Test/ |
D | JsonFormatterTest.cs | 525 [TestCase(typeof(DoubleValue), 1.5d, "1.5")]
|
D | JsonParserTest.cs | 145 [TestCase(typeof(DoubleValue), "1.5", 1.5d)]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/ |
D | JsonParser.cs | 87 { DoubleValue.Descriptor.FullName, MergeWrapperField },
|