• Home
  • Raw
  • Download

Lines Matching refs:String16

49 bool getValue(const android::String16& key, T* out, const map<android::String16, T>& map) {  in getValue()  argument
57 set<android::String16> getKeys(const map<android::String16, T>& map) { in getKeys() argument
58 if (map.empty()) return set<android::String16>(); in getKeys()
59 set<android::String16> keys; in getKeys()
153 size_t PersistableBundle::erase(const String16& key) { in erase()
167 void PersistableBundle::putBoolean(const String16& key, bool value) { in putBoolean()
172 void PersistableBundle::putInt(const String16& key, int32_t value) { in putInt()
177 void PersistableBundle::putLong(const String16& key, int64_t value) { in putLong()
182 void PersistableBundle::putDouble(const String16& key, double value) { in putDouble()
187 void PersistableBundle::putString(const String16& key, const String16& value) { in putString()
192 void PersistableBundle::putBooleanVector(const String16& key, const vector<bool>& value) { in putBooleanVector()
197 void PersistableBundle::putIntVector(const String16& key, const vector<int32_t>& value) { in putIntVector()
202 void PersistableBundle::putLongVector(const String16& key, const vector<int64_t>& value) { in putLongVector()
207 void PersistableBundle::putDoubleVector(const String16& key, const vector<double>& value) { in putDoubleVector()
212 void PersistableBundle::putStringVector(const String16& key, const vector<String16>& value) { in putStringVector()
217 void PersistableBundle::putPersistableBundle(const String16& key, const PersistableBundle& value) { in putPersistableBundle()
222 bool PersistableBundle::getBoolean(const String16& key, bool* out) const { in getBoolean()
226 bool PersistableBundle::getInt(const String16& key, int32_t* out) const { in getInt()
230 bool PersistableBundle::getLong(const String16& key, int64_t* out) const { in getLong()
234 bool PersistableBundle::getDouble(const String16& key, double* out) const { in getDouble()
238 bool PersistableBundle::getString(const String16& key, String16* out) const { in getString()
242 bool PersistableBundle::getBooleanVector(const String16& key, vector<bool>* out) const { in getBooleanVector()
246 bool PersistableBundle::getIntVector(const String16& key, vector<int32_t>* out) const { in getIntVector()
250 bool PersistableBundle::getLongVector(const String16& key, vector<int64_t>* out) const { in getLongVector()
254 bool PersistableBundle::getDoubleVector(const String16& key, vector<double>* out) const { in getDoubleVector()
258 bool PersistableBundle::getStringVector(const String16& key, vector<String16>* out) const { in getStringVector()
262 bool PersistableBundle::getPersistableBundle(const String16& key, PersistableBundle* out) const { in getPersistableBundle()
266 set<String16> PersistableBundle::getBooleanKeys() const { in getBooleanKeys()
270 set<String16> PersistableBundle::getIntKeys() const { in getIntKeys()
274 set<String16> PersistableBundle::getLongKeys() const { in getLongKeys()
278 set<String16> PersistableBundle::getDoubleKeys() const { in getDoubleKeys()
282 set<String16> PersistableBundle::getStringKeys() const { in getStringKeys()
286 set<String16> PersistableBundle::getBooleanVectorKeys() const { in getBooleanVectorKeys()
290 set<String16> PersistableBundle::getIntVectorKeys() const { in getIntVectorKeys()
294 set<String16> PersistableBundle::getLongVectorKeys() const { in getLongVectorKeys()
298 set<String16> PersistableBundle::getDoubleVectorKeys() const { in getDoubleVectorKeys()
302 set<String16> PersistableBundle::getStringVectorKeys() const { in getStringVectorKeys()
306 set<String16> PersistableBundle::getPersistableBundleKeys() const { in getPersistableBundleKeys()
411 String16 key; in readFromParcelInner()