Home
last modified time | relevance | path

Searched refs:LongValue (Results 1 – 6 of 6) sorted by relevance

/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DMetrics.cs82 case ValueOneofCase.LongValue: in GaugeResponse()
83 LongValue = other.LongValue; in GaugeResponse()
115 public long LongValue { property in Grpc.Testing.GaugeResponse
116 get { return valueCase_ == ValueOneofCase.LongValue ? (long) value_ : 0L; }
119 valueCase_ = ValueOneofCase.LongValue;
149 LongValue = 2, enumerator
179 if (LongValue != other.LongValue) return false; in Equals()
190 if (valueCase_ == ValueOneofCase.LongValue) hash ^= LongValue.GetHashCode(); in GetHashCode()
214 if (valueCase_ == ValueOneofCase.LongValue) { in WriteTo()
216 output.WriteInt64(LongValue); in WriteTo()
[all …]
DStressTestClient.cs262 LongValue = qps in GetGauge()
275 LongValue = qps in GetAllGauges()
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/
Dencodable_value_unittests.cc58 EXPECT_EQ(value.LongValue(), std::numeric_limits<int32_t>::max()); in TEST()
65 EXPECT_EQ(value.LongValue(), 42); in TEST()
67 EXPECT_EQ(value.LongValue(), std::numeric_limits<int64_t>::max()); in TEST()
181 EXPECT_EQ(map_value[EncodableValue(1)].LongValue(), INT64_C(10000)); in TEST()
195 EXPECT_EQ(EncodableValue(EncodableValue::Type::kLong).LongValue(), in TEST()
Dstandard_codec.cc165 int64_t long_value = value.LongValue(); in WriteValue()
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/testing/
Dencodable_value_utils.cc25 return a.LongValue() == b.LongValue(); in EncodableValuesAreEqual()
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/
Dencodable_value.h337 int64_t LongValue() const { in LongValue() function