Home
last modified time | relevance | path

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

/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/ranges/range.factories/range.iota.view/
H A Dtypes.h14 struct SomeInt { struct
18 constexpr explicit SomeInt(int value = 0) : value_(value) {} in value_() argument
58 constexpr SomeInt operator++(int) { auto tmp = *this; ++value_; return tmp; } argument
60 constexpr SomeInt operator--(int) { auto tmp = *this; --value_; return tmp; } argument
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/optional/optional.comp_with_t/
H A Dcompare.three_way.pass.cpp26 struct SomeInt { struct
29 constexpr explicit SomeInt(int value = 0) : value_(value) {} in SomeInt() argument