Lines Matching refs:Value
40 using android::binder::Value;
82 class Value::ContentBase {
97 template<typename T> class Value::Content : public Value::ContentBase {
132 template<typename T> bool Value::ContentBase::get(T* out) const in get()
146 Value::Value() : mContent(nullptr) in Value() function in android::binder::Value
150 Value::Value(const Value& value) in Value() function in android::binder::Value
155 Value::~Value() in ~Value()
160 bool Value::operator==(const Value& rhs) const in operator ==()
162 const Value& lhs(*this); in operator ==()
177 Value& Value::swap(Value &rhs) in swap()
183 Value& Value::operator=(const Value& rhs) in operator =()
194 bool Value::empty() const in empty()
199 void Value::clear() in clear()
205 int32_t Value::parcelType() const in parcelType()
230 const std::type_info& Value::type() const in type()
239 bool Value::is ## TYPENAME() const \
245 bool Value::get ## TYPENAME(T* out) const \
251 void Value::put ## TYPENAME(const T& in) \
255 Value& Value::operator=(const T& rhs) \
261 Value::Value(const T& value) \
282 bool Value::getString(String8* out) const in DEF_TYPE_ACCESSORS()
292 bool Value::getString(::std::string* out) const in getString()
302 status_t Value::writeToParcel(Parcel* parcel) const in writeToParcel()
358 status_t Value::readFromParcel(const Parcel* parcel) in readFromParcel()