Lines Matching refs:PersistableBundle

93 status_t PersistableBundle::writeToParcel(Parcel* parcel) const {  in writeToParcel()
125 status_t PersistableBundle::readFromParcel(const Parcel* parcel) { in readFromParcel()
139 bool PersistableBundle::empty() const { in empty()
143 size_t PersistableBundle::size() const { in size()
157 size_t PersistableBundle::erase(const String16& key) { in erase()
171 void PersistableBundle::putBoolean(const String16& key, bool value) { in putBoolean()
176 void PersistableBundle::putInt(const String16& key, int32_t value) { in putInt()
181 void PersistableBundle::putLong(const String16& key, int64_t value) { in putLong()
186 void PersistableBundle::putDouble(const String16& key, double value) { in putDouble()
191 void PersistableBundle::putString(const String16& key, const String16& value) { in putString()
196 void PersistableBundle::putBooleanVector(const String16& key, const vector<bool>& value) { in putBooleanVector()
201 void PersistableBundle::putIntVector(const String16& key, const vector<int32_t>& value) { in putIntVector()
206 void PersistableBundle::putLongVector(const String16& key, const vector<int64_t>& value) { in putLongVector()
211 void PersistableBundle::putDoubleVector(const String16& key, const vector<double>& value) { in putDoubleVector()
216 void PersistableBundle::putStringVector(const String16& key, const vector<String16>& value) { in putStringVector()
221 void PersistableBundle::putPersistableBundle(const String16& key, const PersistableBundle& value) { in putPersistableBundle()
226 bool PersistableBundle::getBoolean(const String16& key, bool* out) const { in getBoolean()
230 bool PersistableBundle::getInt(const String16& key, int32_t* out) const { in getInt()
234 bool PersistableBundle::getLong(const String16& key, int64_t* out) const { in getLong()
238 bool PersistableBundle::getDouble(const String16& key, double* out) const { in getDouble()
242 bool PersistableBundle::getString(const String16& key, String16* out) const { in getString()
246 bool PersistableBundle::getBooleanVector(const String16& key, vector<bool>* out) const { in getBooleanVector()
250 bool PersistableBundle::getIntVector(const String16& key, vector<int32_t>* out) const { in getIntVector()
254 bool PersistableBundle::getLongVector(const String16& key, vector<int64_t>* out) const { in getLongVector()
258 bool PersistableBundle::getDoubleVector(const String16& key, vector<double>* out) const { in getDoubleVector()
262 bool PersistableBundle::getStringVector(const String16& key, vector<String16>* out) const { in getStringVector()
266 bool PersistableBundle::getPersistableBundle(const String16& key, PersistableBundle* out) const { in getPersistableBundle()
270 set<String16> PersistableBundle::getBooleanKeys() const { in getBooleanKeys()
274 set<String16> PersistableBundle::getIntKeys() const { in getIntKeys()
278 set<String16> PersistableBundle::getLongKeys() const { in getLongKeys()
282 set<String16> PersistableBundle::getDoubleKeys() const { in getDoubleKeys()
286 set<String16> PersistableBundle::getStringKeys() const { in getStringKeys()
290 set<String16> PersistableBundle::getBooleanVectorKeys() const { in getBooleanVectorKeys()
294 set<String16> PersistableBundle::getIntVectorKeys() const { in getIntVectorKeys()
298 set<String16> PersistableBundle::getLongVectorKeys() const { in getLongVectorKeys()
302 set<String16> PersistableBundle::getDoubleVectorKeys() const { in getDoubleVectorKeys()
306 set<String16> PersistableBundle::getStringVectorKeys() const { in getStringVectorKeys()
310 set<String16> PersistableBundle::getPersistableBundleKeys() const { in getPersistableBundleKeys()
314 status_t PersistableBundle::writeToParcelInner(Parcel* parcel) const { in writeToParcelInner()
387 status_t PersistableBundle::readFromParcelInner(const Parcel* parcel, size_t length) { in readFromParcelInner()