Home
last modified time | relevance | path

Searched defs:WrappedInt (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/core/
H A Dquic_interval_test.cc78 struct WrappedInt { in TEST() struct
79 WrappedInt(int value) : value(value) {} in TEST() argument
80 bool operator<(const WrappedInt& other) { return value < other.value; } in TEST()
81 bool operator>(const WrappedInt& other) { return value > other.value; } in TEST()
82 bool operator<=(const WrappedInt& other) { return value <= other.value; } in TEST()
83 bool operator>=(const WrappedInt& other) { return value >= other.value; } in TEST()
84 bool operator==(const WrappedInt& other) { return value == other.value; } in TEST()
85 int value; in TEST()