Searched defs:BigBuffer (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/tools/aapt2/util/
H A DBigBuffer.h34 class BigBuffer { class in namespace:aapt
52 friend class BigBuffer;
63 * Create a BigBuffer with block allocation sizes
66 BigBuffer(size_t blockSize);
68 BigBuffer(const BigBuffer&) = delete; // No copying.
70 BigBuffer(BigBuffer&& rhs);
85 * Moves the specified BigBuffer into this one. When this method
88 void appendBuffer(BigBuffer
115 inline BigBuffer::BigBuffer(size_t blockSize) : mBlockSize(blockSize), mSize(0) { function in class:aapt::BigBuffer
118 inline BigBuffer::BigBuffer(BigBuffer&& rhs) : function in class:aapt::BigBuffer
[all...]

Completed in 314 milliseconds