Lines Matching refs:get
141 RETURN_STATUS_IF_ERROR(parcel->writeInt32(std::get<int32_t>(it.second))); in writeToParcel()
145 RETURN_STATUS_IF_ERROR(parcel->writeInt64(std::get<int64_t>(it.second))); in writeToParcel()
149 RETURN_STATUS_IF_ERROR(parcel->writeUint32(std::get<size_t>(it.second))); in writeToParcel()
153 RETURN_STATUS_IF_ERROR(parcel->writeFloat(std::get<float>(it.second))); in writeToParcel()
157 RETURN_STATUS_IF_ERROR(parcel->writeDouble(std::get<double>(it.second))); in writeToParcel()
161 RETURN_STATUS_IF_ERROR(parcel->writeCString(std::get<std::string>(it.second).c_str())); in writeToParcel()
165 RETURN_STATUS_IF_ERROR(parcel->writeByte(std::get<int8_t>(it.second))); in writeToParcel()
208 const std::string& entryValue = std::get<std::string>(mKeyValueStore.at(key)); in findString()
237 *out = std::get<T>(mKeyValueStore.at(key)); in findValue()
382 std::get<int32_t>(it.second)); in debugString()
386 std::get<int64_t>(it.second)); in debugString()
390 std::get<size_t>(it.second)); in debugString()
394 std::get<float>(it.second)); in debugString()
398 std::get<double>(it.second)); in debugString()
402 std::get<std::string>(it.second).c_str()); in debugString()
406 std::get<int8_t>(it.second)); in debugString()