Lines Matching refs:Swap
199 GenericPointer& Swap(GenericPointer& other) RAPIDJSON_NOEXCEPT { in Swap() function
200 internal::Swap(allocator_, other.allocator_); in Swap()
201 internal::Swap(ownAllocator_, other.ownAllocator_); in Swap()
202 internal::Swap(nameBuffer_, other.nameBuffer_); in Swap()
203 internal::Swap(tokens_, other.tokens_); in Swap()
204 internal::Swap(tokenCount_, other.tokenCount_); in Swap()
205 internal::Swap(parseErrorOffset_, other.parseErrorOffset_); in Swap()
206 internal::Swap(parseErrorCode_, other.parseErrorCode_); in Swap()
222 friend inline void swap(GenericPointer& a, GenericPointer& b) RAPIDJSON_NOEXCEPT { a.Swap(b); } in swap()
808 …ValueType& Swap(ValueType& root, ValueType& value, typename ValueType::AllocatorType& allocator) c… in Swap() function
809 return Create(root, allocator).Swap(value); in Swap()
814 …ValueType& Swap(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& … in Swap() function
815 return Create(document).Swap(value); in Swap()
1432 return pointer.Swap(root, value, a); in SwapValueByPointer()
1437 return GenericPointer<typename T::ValueType>(source, N - 1).Swap(root, value, a); in SwapValueByPointer()
1442 return pointer.Swap(document, value); in SwapValueByPointer()
1447 return GenericPointer<typename DocumentType::ValueType>(source, N - 1).Swap(document, value); in SwapValueByPointer()