Lines Matching refs:Any
39 class BRILLO_EXPORT Any final {
41 Any(); // Do not inline to hide internal_details::Buffer from export table.
45 Any(const Any& rhs);
46 Any(Any&& rhs); // NOLINT(build/c++11)
49 inline Any(T value) { // NOLINT(runtime/explicit) in Any() function
55 ~Any();
58 Any& operator=(const Any& rhs);
59 Any& operator=(Any&& rhs); // NOLINT(build/c++11)
61 inline Any& operator=(T value) {
70 bool operator==(const Any& rhs) const;
71 inline bool operator!=(const Any& rhs) const { return !operator==(rhs); }
170 void Swap(Any& other);
208 inline void swap(brillo::Any& lhs, brillo::Any& rhs) { in swap()