15 #ifndef RAPIDJSON_MEMORYBUFFER_H_ 16 #define RAPIDJSON_MEMORYBUFFER_H_ 36 template <
typename Allocator = CrtAllocator>
51 return stack_.template Bottom<Ch>();
65 std::memset(memoryBuffer.
stack_.Push<
char>(n),
c, n *
sizeof(
c));
70 #endif // RAPIDJSON_MEMORYBUFFER_H_ static const size_t kDefaultCapacity
Definition: memorybuffer.h:56
int * count
Definition: gmock_stress_test.cc:176
void ShrinkToFit()
Definition: memorybuffer.h:46
#define RAPIDJSON_NAMESPACE_END
provide custom rapidjson namespace (closing expression)
Definition: rapidjson.h:124
Represents an in-memory output byte stream.
Definition: fwd.h:74
size_t GetSize() const
Definition: memorybuffer.h:54
A type-unsafe stack for storing different types of data.
Definition: stack.h:36
GenericMemoryBuffer(Allocator *allocator=0, size_t capacity=kDefaultCapacity)
Definition: memorybuffer.h:40
char Ch
Definition: memorybuffer.h:38
#define RAPIDJSON_NAMESPACE_BEGIN
provide custom rapidjson namespace (opening expression)
Definition: rapidjson.h:121
void Pop(size_t count)
Definition: memorybuffer.h:48
Ch * Push(size_t count)
Definition: memorybuffer.h:47
void Put(Ch c)
Definition: memorybuffer.h:42
void Flush()
Definition: memorybuffer.h:43
internal::Stack< Allocator > stack_
Definition: memorybuffer.h:57
const Ch * GetBuffer() const
Definition: memorybuffer.h:50
void PutN(MemoryBuffer &memoryBuffer, char c, size_t n)
Implement specialized version of PutN() with memset() for better performance.
Definition: memorybuffer.h:64
void Clear()
Definition: memorybuffer.h:45
c
Definition: pymoduletest.py:79
GenericMemoryBuffer MemoryBuffer
Definition: memorybuffer.h:60