Lines Matching refs:mKeyValueStore
129 RETURN_STATUS_IF_ERROR(parcel->writeUint32(int32_t(mKeyValueStore.size()))); in writeToParcel()
132 for (const auto& it : mKeyValueStore) { in writeToParcel()
191 mKeyValueStore[key] = value; in setString()
203 if (mKeyValueStore.find(key) == mKeyValueStore.end()) { in findString()
208 const std::string& entryValue = std::get<std::string>(mKeyValueStore.at(key)); in findString()
222 mKeyValueStore[key] = value; in setValue()
232 if (mKeyValueStore.find(key) == mKeyValueStore.end()) { in findValue()
237 *out = std::get<T>(mKeyValueStore.at(key)); in findValue()
294 mKeyValueStore[key] = value; in set()
303 if (mKeyValueStore.find(key) == mKeyValueStore.end()) { in find()
308 *out = mKeyValueStore.at(key); in find()
331 if (mIterator == mKeyValueStore.end()) return false; in hasNext()
340 return mIterator != mKeyValueStore.end(); in hasNext()
375 for (const auto& it : mKeyValueStore) { in debugString()