HomeSort by relevance Sort by last modified time
    Searched refs:Int64Value (Results 1 - 25 of 31) sorted by null

1 2

  /external/grpc-grpc-java/services/src/generated/main/java/io/grpc/channelz/v1/
SocketDataOrBuilder.java 182 * <code>.google.protobuf.Int64Value local_flow_control_window = 11;</code>
192 * <code>.google.protobuf.Int64Value local_flow_control_window = 11;</code>
194 com.google.protobuf.Int64Value getLocalFlowControlWindow();
202 * <code>.google.protobuf.Int64Value local_flow_control_window = 11;</code>
213 * <code>.google.protobuf.Int64Value remote_flow_control_window = 12;</code>
223 * <code>.google.protobuf.Int64Value remote_flow_control_window = 12;</code>
225 com.google.protobuf.Int64Value getRemoteFlowControlWindow();
233 * <code>.google.protobuf.Int64Value remote_flow_control_window = 12;</code>
SocketData.java 148 com.google.protobuf.Int64Value.Builder subBuilder = null;
152 localFlowControlWindow_ = input.readMessage(com.google.protobuf.Int64Value.parser(), extensionRegistry);
161 com.google.protobuf.Int64Value.Builder subBuilder = null;
165 remoteFlowControlWindow_ = input.readMessage(com.google.protobuf.Int64Value.parser(), extensionRegistry);
432 private com.google.protobuf.Int64Value localFlowControlWindow_;
440 * <code>.google.protobuf.Int64Value local_flow_control_window = 11;</code>
452 * <code>.google.protobuf.Int64Value local_flow_control_window = 11;</code>
454 public com.google.protobuf.Int64Value getLocalFlowControlWindow() {
455 return localFlowControlWindow_ == null ? com.google.protobuf.Int64Value.getDefaultInstance() : localFlowControlWindow_;
464 * <code>.google.protobuf.Int64Value local_flow_control_window = 11;</code
    [all...]
  /external/flatbuffers/tests/FlatBuffers.Test/
FuzzTestData.cs 33 public static readonly long Int64Value = BitConverter.ToInt64(_overflowInt64, 0);
FlatBuffersFuzzTests.cs 690 builder.AddLong(j, FuzzTestData.Int64Value, 0);
772 Assert.AreEqual(FuzzTestData.Int64Value, table.GetSlot(f, (long)0));
  /external/protobuf/src/google/protobuf/
wrappers.pb.cc 94 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Int64Value, value_),
99 Int64Value::default_instance_,
104 sizeof(Int64Value),
105 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Int64Value, _internal_metadata_),
106 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Int64Value, _is_default_instance_));
214 Int64Value_descriptor_, &Int64Value::default_instance());
236 delete Int64Value::default_instance_;
275 Int64Value::default_instance_ = new Int64Value();
284 Int64Value::default_instance_->InitAsDefaultInstance()
    [all...]
wrappers.pb.h 45 class Int64Value;
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)
    [all...]
  /external/golang-protobuf/ptypes/wrappers/
wrappers.pb.go 115 // The JSON representation for `Int64Value` is JSON string.
116 type Int64Value struct {
124 func (m *Int64Value) Reset() { *m = Int64Value{} }
125 func (m *Int64Value) String() string { return proto.CompactTextString(m) }
126 func (*Int64Value) ProtoMessage() {}
127 func (*Int64Value) Descriptor() ([]byte, []int) {
131 func (*Int64Value) XXX_WellKnownType() string { return "Int64Value" }
133 func (m *Int64Value) XXX_Unmarshal(b []byte) error
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Wrappers.cs 41 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Int64Value), global::Google.Protobuf.WellKnownTypes.Int64Value.Parser, new[]{ "Value" }, null, null, null),
279 /// The JSON representation for `Int64Value` is JSON string.
282 public sealed partial class Int64Value : pb::IMessage<Int64Value> {
283 private static readonly pb::MessageParser<Int64Value> _parser = new pb::MessageParser<Int64Value>(() => new Int64Value());
284 public static pb::MessageParser<Int64Value> Parser { get { return _parser; } }
294 public Int64Value() {
    [all...]
  /external/libtextclassifier/utils/
variant.h 67 int64 Int64Value() const {
lua-utils.cc 229 lua_pushnumber(state_, value.Int64Value());
flatbuffers.cc 315 builder->AddElement<int64>(it.first->offset(), it.second.Int64Value(),
flatbuffers_test.cc 267 EXPECT_EQ(84, entity_data_map["a_long_field"].Int64Value());
  /external/syzkaller/vendor/google.golang.org/appengine/datastore/
save.go 47 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))
load.go 376 // meaning. For example, an Int64Value with GD_WHEN becomes a time.Time.
379 case v.Int64Value != nil:
381 return fromUnixMicro(*v.Int64Value), nil
383 return *v.Int64Value, nil
  /external/grpc-grpc-java/services/src/main/java/io/grpc/services/
ChannelzProtoUtil.java 23 import com.google.protobuf.Int64Value;
235 Int64Value.of(s.localFlowControlWindow))
237 Int64Value.of(s.remoteFlowControlWindow));
  /external/libtextclassifier/utils/intents/
jni.cc 124 name.get(), value.Int64Value());
  /external/protobuf/conformance/
Makefile.am 44 com/google/protobuf/Int64Value.java \
108 lite/com/google/protobuf/Int64Value.java \
  /external/protobuf/src/google/protobuf/util/internal/
utility.cc 113 google::protobuf::Int64Value i;
287 "google.protobuf.Int64Value", "google.protobuf.UInt64Value",
  /external/grpc-grpc-java/services/src/test/java/io/grpc/services/
ChannelzProtoUtilTest.java 30 import com.google.protobuf.Int64Value;
296 .setLocalFlowControlWindow(Int64Value.newBuilder().setValue(11))
297 .setRemoteFlowControlWindow(Int64Value.newBuilder().setValue(12))
  /external/protobuf/java/util/src/test/java/com/google/protobuf/util/
JsonFormatTest.java 40 import com.google.protobuf.Int64Value;
674 + " \"int64Value\": \"0\",\n"
700 + " \"int64Value\": \"2\",\n"
    [all...]
  /external/golang-protobuf/jsonpb/
jsonpb_test.go 516 {"Int64Value", marshaler, &pb.KnownTypes{I64: &wpb.Int64Value{Value: -3}}, `{"i64":"-3"}`},
817 {"Int64Value", Unmarshaler{}, `{"i64":"-3"}`, &pb.KnownTypes{I64: &wpb.Int64Value{Value: -3}}},
    [all...]
  /external/protobuf/java/util/src/main/java/com/google/protobuf/util/
JsonFormat.java 58 import com.google.protobuf.Int64Value;
495 printers.put(Int64Value.getDescriptor().getFullName(), wrappersPrinter);
    [all...]
  /external/golang-protobuf/conformance/internal/conformance_proto/
conformance.pb.go 435 OptionalInt64Wrapper *wrappers.Int64Value `protobuf:"bytes,203,opt,name=optional_int64_wrapper,json=optionalInt64Wrapper,proto3" json:"optional_int64_wrapper,omitempty"`
444 RepeatedInt64Wrapper []*wrappers.Int64Value `protobuf:"bytes,213,rep,name=repeated_int64_wrapper,json=repeatedInt64Wrapper,proto3" json:"repeated_int64_wrapper,omitempty"`
    [all...]
  /external/tinyxml2/
tinyxml2.h     [all...]
  /external/syzkaller/vendor/google.golang.org/appengine/internal/datastore/
datastore_v3.pb.go 542 Int64Value *int64 `protobuf:"varint,1,opt,name=int64Value" json:"int64Value,omitempty"`
557 if m != nil && m.Int64Value != nil {
558 return *m.Int64Value
    [all...]

Completed in 1715 milliseconds

1 2