Home
last modified time | relevance | path

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

12

/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/golang-protobuf/ptypes/wrappers/
Dwrappers.pb.go116 type Int64Value struct { struct
124 func (m *Int64Value) Reset() { *m = Int64Value{} } argument
125 func (m *Int64Value) String() string { return proto.CompactTextString(m) } argument
126 func (*Int64Value) ProtoMessage() {} argument
127 func (*Int64Value) Descriptor() ([]byte, []int) { argument
131 func (*Int64Value) XXX_WellKnownType() string { return "Int64Value" } argument
133 func (m *Int64Value) XXX_Unmarshal(b []byte) error { argument
136 func (m *Int64Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument
139 func (m *Int64Value) XXX_Merge(src proto.Message) { argument
142 func (m *Int64Value) XXX_Size() int { argument
[all …]
Dwrappers.proto66 // The JSON representation for `Int64Value` is JSON string.
67 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/grpc-grpc-java/services/src/generated/main/java/io/grpc/channelz/v1/
DSocketData.java148 com.google.protobuf.Int64Value.Builder subBuilder = null; in SocketData()
152 …localFlowControlWindow_ = input.readMessage(com.google.protobuf.Int64Value.parser(), extensionRegi… in SocketData()
161 com.google.protobuf.Int64Value.Builder subBuilder = null; in SocketData()
165 …remoteFlowControlWindow_ = input.readMessage(com.google.protobuf.Int64Value.parser(), extensionReg… in SocketData()
432 private com.google.protobuf.Int64Value localFlowControlWindow_;
454 public com.google.protobuf.Int64Value getLocalFlowControlWindow() { in getLocalFlowControlWindow()
455 …return localFlowControlWindow_ == null ? com.google.protobuf.Int64Value.getDefaultInstance() : loc… in getLocalFlowControlWindow()
471 private com.google.protobuf.Int64Value remoteFlowControlWindow_;
493 public com.google.protobuf.Int64Value getRemoteFlowControlWindow() { in getRemoteFlowControlWindow()
494 …return remoteFlowControlWindow_ == null ? com.google.protobuf.Int64Value.getDefaultInstance() : re… in getRemoteFlowControlWindow()
[all …]
DSocketDataOrBuilder.java194 com.google.protobuf.Int64Value getLocalFlowControlWindow(); in getLocalFlowControlWindow()
225 com.google.protobuf.Int64Value getRemoteFlowControlWindow(); in getRemoteFlowControlWindow()
/external/syzkaller/vendor/google.golang.org/appengine/datastore/
Dsave.go47 pv.Int64Value = proto.Int64(v.Int())
68 pv.Int64Value = proto.Int64(toUnixMicro(t))
252 x.Value.Int64Value = proto.Int64(v)
270 x.Value.Int64Value = proto.Int64(toUnixMicro(v))
Dload.go379 case v.Int64Value != nil:
381 return fromUnixMicro(*v.Int64Value), nil
383 return *v.Int64Value, nil
/external/flatbuffers/tests/FlatBuffers.Test/
DFuzzTestData.cs33 public static readonly long Int64Value = BitConverter.ToInt64(_overflowInt64, 0); field in FlatBuffers.Test.FuzzTestData
DFlatBuffersFuzzTests.cs690 builder.AddLong(j, FuzzTestData.Int64Value, 0); in CheckObjects()
772 Assert.AreEqual(FuzzTestData.Int64Value, table.GetSlot(f, (long)0)); in CheckObjects()
/external/libtextclassifier/utils/
Dvariant.h67 int64 Int64Value() const { in Int64Value() function
/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/grpc-grpc-java/services/src/main/java/io/grpc/services/
DChannelzProtoUtil.java23 import com.google.protobuf.Int64Value;
235 Int64Value.of(s.localFlowControlWindow)) in extractSocketData()
237 Int64Value.of(s.remoteFlowControlWindow)); in extractSocketData()
/external/golang-protobuf/conformance/internal/conformance_proto/
Dconformance.pb.go435 …OptionalInt64Wrapper *wrappers.Int64Value `protobuf:"bytes,203,opt,name=optional_int64_wrapper…
444 …RepeatedInt64Wrapper []*wrappers.Int64Value `protobuf:"bytes,213,rep,name=repeated_int64_wrapper…
1017 func (m *TestAllTypes) GetOptionalInt64Wrapper() *wrappers.Int64Value {
1080 func (m *TestAllTypes) GetRepeatedInt64Wrapper() []*wrappers.Int64Value {
Dconformance.proto218 google.protobuf.Int64Value optional_int64_wrapper = 203;
228 repeated google.protobuf.Int64Value repeated_int64_wrapper = 213;
/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/grpc-grpc-java/services/src/test/java/io/grpc/services/
DChannelzProtoUtilTest.java30 import com.google.protobuf.Int64Value;
296 .setLocalFlowControlWindow(Int64Value.newBuilder().setValue(11))
297 .setRemoteFlowControlWindow(Int64Value.newBuilder().setValue(12))
/external/libtextclassifier/utils/intents/
Djni.cc124 name.get(), value.Int64Value()); in AsNamedVariant()
/external/golang-protobuf/jsonpb/jsonpb_test_proto/
Dtest_objects.proto149 optional google.protobuf.Int64Value i64 = 5;
/external/protobuf/src/google/protobuf/util/internal/
Dutility.cc113 google::protobuf::Int64Value i; in GetInt64FromAny()

12