Home
last modified time | relevance | path

Searched refs:Int64Value (Results 1 – 17 of 17) sorted by relevance

/external/protobuf/src/google/protobuf/
Dwrappers.pb.cc94 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Int64Value, value_), in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto()
99 Int64Value::default_instance_, in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto()
104 sizeof(Int64Value), in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto()
105 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Int64Value, _internal_metadata_), in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto()
106 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Int64Value, _is_default_instance_)); in protobuf_AssignDesc_google_2fprotobuf_2fwrappers_2eproto()
214 Int64Value_descriptor_, &Int64Value::default_instance()); in protobuf_RegisterTypes()
236 delete Int64Value::default_instance_; in protobuf_ShutdownFile_google_2fprotobuf_2fwrappers_2eproto()
275 Int64Value::default_instance_ = new Int64Value(); in protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto()
284 Int64Value::default_instance_->InitAsDefaultInstance(); in protobuf_AddDesc_google_2fprotobuf_2fwrappers_2eproto()
830 const int Int64Value::kValueFieldNumber;
[all …]
Dwrappers.pb.h45 class Int64Value; variable
234 class LIBPROTOBUF_EXPORT Int64Value : public ::google::protobuf::Message {
236 Int64Value();
237 virtual ~Int64Value();
239 Int64Value(const Int64Value& from);
241 inline Int64Value& operator=(const Int64Value& from) {
251 static const Int64Value& default_instance();
253 void UnsafeArenaSwap(Int64Value* other);
254 void Swap(Int64Value* other);
258 inline Int64Value* New() const { return New(NULL); } in New()
[all …]
Dunittest_well_known_types.proto35 google.protobuf.Int64Value int64_field = 12;
60 repeated google.protobuf.Int64Value int64_field = 12;
82 google.protobuf.Int64Value int64_field = 12;
107 map<int32,google.protobuf.Int64Value> int64_field = 12;
Dwrappers.proto67 // The JSON representation for `Int64Value` is JSON string.
68 message Int64Value { message
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DWrappers.cs41 …ypeof(global::Google.Protobuf.WellKnownTypes.Int64Value), global::Google.Protobuf.WellKnownTypes.I… in WrappersReflection()
282 public sealed partial class Int64Value : pb::IMessage<Int64Value> { class
283 …ate static readonly pb::MessageParser<Int64Value> _parser = new pb::MessageParser<Int64Value>(() =…
284 public static pb::MessageParser<Int64Value> Parser { get { return _parser; } }
294 public Int64Value() { in Int64Value() method in Google.Protobuf.WellKnownTypes.Int64Value
300 public Int64Value(Int64Value other) : this() { in Int64Value() method in Google.Protobuf.WellKnownTypes.Int64Value
304 public Int64Value Clone() { in Clone()
305 return new Int64Value(this); in Clone()
322 return Equals(other as Int64Value); in Equals()
325 public bool Equals(Int64Value other) { in Equals()
[all …]
/external/flatbuffers/tests/FlatBuffers.Test/
DFuzzTestData.cs33 public static readonly long Int64Value = BitConverter.ToInt64(_overflowInt64, 0); field in FlatBuffers.Test.FuzzTestData
DFlatBuffersFuzzTests.cs632 builder.AddLong(j, FuzzTestData.Int64Value, 0); in CheckObjects()
714 Assert.AreEqual(FuzzTestData.Int64Value, table.GetSlot(f, (long)0)); in CheckObjects()
/external/protobuf/src/google/protobuf/util/
Djson_format_proto3.proto116 google.protobuf.Int64Value int64_value = 3;
126 repeated google.protobuf.Int64Value repeated_int64_value = 13;
/external/protobuf/src/google/protobuf/util/internal/testdata/
Dwrappers.proto71 google.protobuf.Int64Value int64 = 1;
/external/protobuf/conformance/
Dconformance.proto218 google.protobuf.Int64Value optional_int64_wrapper = 203;
228 repeated google.protobuf.Int64Value repeated_int64_wrapper = 213;
DMakefile.am44 com/google/protobuf/Int64Value.java \
108 lite/com/google/protobuf/Int64Value.java \
/external/protobuf/src/google/protobuf/util/internal/
Dutility.cc113 google::protobuf::Int64Value i; in GetInt64FromAny()
/external/protobuf/java/util/src/test/java/com/google/protobuf/util/
DJsonFormatTest.java40 import com.google.protobuf.Int64Value;
859 anyMessage = Any.pack(Int64Value.newBuilder().setValue(12345).build()); in testAnyFields()
/external/protobuf/java/util/src/main/java/com/google/protobuf/util/
DJsonFormat.java58 import com.google.protobuf.Int64Value;
495 printers.put(Int64Value.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypePrinters()
1027 parsers.put(Int64Value.getDescriptor().getFullName(), wrappersPrinter); in buildWellKnownTypeParsers()
/external/protobuf/java/util/src/test/proto/com/google/protobuf/util/
Djson_test.proto168 google.protobuf.Int64Value int64_value = 3;
/external/protobuf/csharp/src/Google.Protobuf/
DJsonParser.cs83 { Int64Value.Descriptor.FullName, MergeWrapperField },
/external/protobuf/csharp/src/Google.Protobuf.Test/
DJsonParserTest.cs137 [TestCase(typeof(Int64Value), "32", 32L)]