Lines Matching refs:jsonPtr
162 double* jsonPtr = jsonValue.get_ptr<double*>(); in unpackValueWithErrorCode() local
164 if (jsonPtr == nullptr) in unpackValueWithErrorCode()
170 jsonPtr = &helper; in unpackValueWithErrorCode()
173 if (jsonPtr == nullptr) in unpackValueWithErrorCode()
177 if (!checkRange<Type>(*jsonPtr, key)) in unpackValueWithErrorCode()
181 value = static_cast<Type>(*jsonPtr); in unpackValueWithErrorCode()
186 int64_t* jsonPtr = jsonValue.get_ptr<int64_t*>(); in unpackValueWithErrorCode() local
187 if (jsonPtr == nullptr) in unpackValueWithErrorCode()
203 if (!checkRange<Type>(*jsonPtr, key)) in unpackValueWithErrorCode()
207 value = static_cast<Type>(*jsonPtr); in unpackValueWithErrorCode()
214 uint64_t* jsonPtr = jsonValue.get_ptr<uint64_t*>(); in unpackValueWithErrorCode() local
215 if (jsonPtr == nullptr) in unpackValueWithErrorCode()
230 if (!checkRange<Type>(*jsonPtr, key)) in unpackValueWithErrorCode()
234 value = static_cast<Type>(*jsonPtr); in unpackValueWithErrorCode()
269 JsonType jsonPtr = jsonValue.get_ptr<JsonType>(); in unpackValueWithErrorCode() local
270 if (jsonPtr == nullptr) in unpackValueWithErrorCode()
276 value = std::move(*jsonPtr); in unpackValueWithErrorCode()