Searched defs:Releaser (Results 1 – 7 of 7) sorted by relevance
1086 struct Releaser { in TEST() struct1087 explicit Releaser(bool* invoked) : invoked(invoked) {} in TEST() function1088 Releaser(Releaser&& other) noexcept : invoked(other.invoked) {} in TEST() argument1089 void operator()(absl::string_view) const { *invoked = true; } in TEST()1091 bool* invoked; in TEST()1113 struct Releaser { in TEST() struct1114 explicit Releaser(bool* destroyed) : destroyed(destroyed) {} in TEST() function1115 ~Releaser() { *destroyed = true; } in TEST()1116 void operator()(absl::string_view) const {} in TEST()1118 bool* destroyed; in TEST()[all …]
1615 struct Releaser { in TEST_P() struct1616 explicit Releaser(bool* invoked) : invoked(invoked) {} in TEST_P() function1617 Releaser(Releaser&& other) noexcept : invoked(other.invoked) {} in TEST_P() function1618 void operator()(absl::string_view) const { *invoked = true; } in TEST_P()1620 bool* invoked; in TEST_P()1643 struct Releaser { in TEST_P() struct1644 explicit Releaser(bool* destroyed) : destroyed(destroyed) {} in TEST_P() function1645 ~Releaser() { *destroyed = true; } in TEST_P()1646 void operator()(absl::string_view) const {} in TEST_P()1648 bool* destroyed; in TEST_P()[all …]
1756 struct Releaser { in TEST_P() struct1757 explicit Releaser(bool* invoked) : invoked(invoked) {} in TEST_P() argument1758 Releaser(Releaser&& other) noexcept : invoked(other.invoked) {} in TEST_P() argument1759 void operator()(absl::string_view) const { *invoked = true; } in TEST_P()1761 bool* invoked; in TEST_P()1784 struct Releaser { in TEST_P() struct1785 explicit Releaser(bool* destroyed) : destroyed(destroyed) {} in TEST_P() function1786 ~Releaser() { *destroyed = true; } in TEST_P()1787 void operator()(absl::string_view) const {} in TEST_P()1789 bool* destroyed; in TEST_P()[all …]
1756 struct Releaser { in TEST_P() struct1757 explicit Releaser(bool* invoked) : invoked(invoked) {} in TEST_P() function1758 Releaser(Releaser&& other) noexcept : invoked(other.invoked) {} in TEST_P() argument1759 void operator()(absl::string_view) const { *invoked = true; } in TEST_P()1761 bool* invoked; in TEST_P()1784 struct Releaser { in TEST_P() struct1785 explicit Releaser(bool* destroyed) : destroyed(destroyed) {} in TEST_P() argument1786 ~Releaser() { *destroyed = true; } in TEST_P()1787 void operator()(absl::string_view) const {} in TEST_P()1789 bool* destroyed; in TEST_P()[all …]
1753 struct Releaser { in TEST_P() struct1754 explicit Releaser(bool* invoked) : invoked(invoked) {} in TEST_P() function1755 Releaser(Releaser&& other) noexcept : invoked(other.invoked) {} in TEST_P() argument1756 void operator()(absl::string_view) const { *invoked = true; } in TEST_P()1758 bool* invoked; in TEST_P()1781 struct Releaser { in TEST_P() struct1782 explicit Releaser(bool* destroyed) : destroyed(destroyed) {} in TEST_P() function1783 ~Releaser() { *destroyed = true; } in TEST_P()1784 void operator()(absl::string_view) const {} in TEST_P()1786 bool* destroyed; in TEST_P()[all …]
4764 class Releaser: class4795 class Releaser: class