Lines Matching defs:get
22 size_t C::get() const { return this->n; }
263 if (c->get() == 2020) {
275 if (c.get() == 2020) {
315 if (s.size() == 3 && s[0].get() == 2020 && s[1].get() == 2050) {
320 bool operator<(const R &a, const R &b) noexcept { return a.get() < b.get(); }
329 if (s[0].get() == 2020 && s[1].get() == 2021 && s[2].get() == 2050) {
550 size_t c_take_const_ptr(const C *c) { return c->get(); }
553 size_t result = c->get();
778 ASSERT(r_return_unique_ptr()->get() == 2020);
779 ASSERT(r_return_shared_ptr()->get() == 2020);
816 ASSERT(r->get() == 2020);
818 ASSERT(r->get() == 2021);
823 ASSERT(r->get() == 2020);
824 ASSERT(r2->get() == 2021);
928 uint32_t I::get() const { return a; }