Lines Matching refs:defaultValue
649 …ValueType& GetWithDefault(ValueType& root, const ValueType& defaultValue, typename ValueType::Allo… in GetWithDefault() argument
652 return alreadyExist ? v : v.CopyFrom(defaultValue, allocator); in GetWithDefault()
656 …ValueType& GetWithDefault(ValueType& root, const Ch* defaultValue, typename ValueType::AllocatorTy… in GetWithDefault() argument
659 return alreadyExist ? v : v.SetString(defaultValue, allocator); in GetWithDefault()
664 …ValueType& GetWithDefault(ValueType& root, const std::basic_string<Ch>& defaultValue, typename Val… in GetWithDefault() argument
667 return alreadyExist ? v : v.SetString(defaultValue, allocator); in GetWithDefault()
677 …GetWithDefault(ValueType& root, T defaultValue, typename ValueType::AllocatorType& allocator) cons… in GetWithDefault() argument
678 return GetWithDefault(root, ValueType(defaultValue).Move(), allocator); in GetWithDefault()
683 …ypename ValueType::AllocatorType, stackAllocator>& document, const ValueType& defaultValue) const { in GetWithDefault() argument
684 return GetWithDefault(document, defaultValue, document.GetAllocator()); in GetWithDefault()
689 …Type, typename ValueType::AllocatorType, stackAllocator>& document, const Ch* defaultValue) const { in GetWithDefault() argument
690 return GetWithDefault(document, defaultValue, document.GetAllocator()); in GetWithDefault()
696 …eType::AllocatorType, stackAllocator>& document, const std::basic_string<Ch>& defaultValue) const { in GetWithDefault() argument
697 return GetWithDefault(document, defaultValue, document.GetAllocator()); in GetWithDefault()
707 …EncodingType, typename ValueType::AllocatorType, stackAllocator>& document, T defaultValue) const { in GetWithDefault() argument
708 return GetWithDefault(document, defaultValue, document.GetAllocator()); in GetWithDefault()
1219 …Pointer<typename T::ValueType>& pointer, const typename T::ValueType& defaultValue, typename T::Al… in GetValueByPointerWithDefault() argument
1220 return pointer.GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1224 …GenericPointer<typename T::ValueType>& pointer, const typename T::Ch* defaultValue, typename T::Al… in GetValueByPointerWithDefault() argument
1225 return pointer.GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1230 …name T::ValueType>& pointer, const std::basic_string<typename T::Ch>& defaultValue, typename T::Al… in GetValueByPointerWithDefault() argument
1231 return pointer.GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1237 …ult(T& root, const GenericPointer<typename T::ValueType>& pointer, T2 defaultValue, typename T::Al… in GetValueByPointerWithDefault() argument
1238 return pointer.GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1242 …ult(T& root, const CharType(&source)[N], const typename T::ValueType& defaultValue, typename T::Al… in GetValueByPointerWithDefault() argument
1243 … return GenericPointer<typename T::ValueType>(source, N - 1).GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1247 …ithDefault(T& root, const CharType(&source)[N], const typename T::Ch* defaultValue, typename T::Al… in GetValueByPointerWithDefault() argument
1248 … return GenericPointer<typename T::ValueType>(source, N - 1).GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1253 … const CharType(&source)[N], const std::basic_string<typename T::Ch>& defaultValue, typename T::Al… in GetValueByPointerWithDefault() argument
1254 … return GenericPointer<typename T::ValueType>(source, N - 1).GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1260 GetValueByPointerWithDefault(T& root, const CharType(&source)[N], T2 defaultValue, typename T::Allo… in GetValueByPointerWithDefault() argument
1261 … return GenericPointer<typename T::ValueType>(source, N - 1).GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1267 …typename DocumentType::ValueType>& pointer, const typename DocumentType::ValueType& defaultValue) { in GetValueByPointerWithDefault() argument
1268 return pointer.GetWithDefault(document, defaultValue); in GetValueByPointerWithDefault()
1272 …ointer<typename DocumentType::ValueType>& pointer, const typename DocumentType::Ch* defaultValue) { in GetValueByPointerWithDefault() argument
1273 return pointer.GetWithDefault(document, defaultValue); in GetValueByPointerWithDefault()
1278 …umentType::ValueType>& pointer, const std::basic_string<typename DocumentType::Ch>& defaultValue) { in GetValueByPointerWithDefault() argument
1279 return pointer.GetWithDefault(document, defaultValue); in GetValueByPointerWithDefault()
1285 …Type& document, const GenericPointer<typename DocumentType::ValueType>& pointer, T2 defaultValue) { in GetValueByPointerWithDefault() argument
1286 return pointer.GetWithDefault(document, defaultValue); in GetValueByPointerWithDefault()
1290 …Type& document, const CharType(&source)[N], const typename DocumentType::ValueType& defaultValue) { in GetValueByPointerWithDefault() argument
1291 …ricPointer<typename DocumentType::ValueType>(source, N - 1).GetWithDefault(document, defaultValue); in GetValueByPointerWithDefault()
1295 …ocumentType& document, const CharType(&source)[N], const typename DocumentType::Ch* defaultValue) { in GetValueByPointerWithDefault() argument
1296 …ricPointer<typename DocumentType::ValueType>(source, N - 1).GetWithDefault(document, defaultValue); in GetValueByPointerWithDefault()
1301 …nt, const CharType(&source)[N], const std::basic_string<typename DocumentType::Ch>& defaultValue) { in GetValueByPointerWithDefault() argument
1302 …ricPointer<typename DocumentType::ValueType>(source, N - 1).GetWithDefault(document, defaultValue); in GetValueByPointerWithDefault()
1308 GetValueByPointerWithDefault(DocumentType& document, const CharType(&source)[N], T2 defaultValue) { in GetValueByPointerWithDefault() argument
1309 …ricPointer<typename DocumentType::ValueType>(source, N - 1).GetWithDefault(document, defaultValue); in GetValueByPointerWithDefault()