Lines Matching refs:Any
11 Any::Any() { in Any() function in brillo::Any
14 Any::Any(const Any& rhs) : data_buffer_(rhs.data_buffer_) { in Any() function in brillo::Any
18 Any::Any(Any&& rhs) : data_buffer_(std::move(rhs.data_buffer_)) { in Any() function in brillo::Any
21 Any::~Any() { in ~Any()
24 Any& Any::operator=(const Any& rhs) { in operator =()
30 Any& Any::operator=(Any&& rhs) { in operator =()
35 bool Any::operator==(const Any& rhs) const { in operator ==()
46 const char* Any::GetTypeTagInternal() const { in GetTypeTagInternal()
53 void Any::Swap(Any& other) { in Swap()
57 bool Any::IsEmpty() const { in IsEmpty()
61 void Any::Clear() { in Clear()
65 bool Any::IsConvertibleToInteger() const { in IsConvertibleToInteger()
69 intmax_t Any::GetAsInteger() const { in GetAsInteger()
74 void Any::AppendToDBusMessageWriter(dbus::MessageWriter* writer) const { in AppendToDBusMessageWriter()