Home
last modified time | relevance | path

Searched refs:pageCount_ (Results 1 – 2 of 2) sorted by relevance

/external/jsoncpp/src/lib_json/
Djson_internalarray.inl202 ValueInternalArray::ValueInternalArray() : pages_(0), size_(0), pageCount_(0) {}
205 : pages_(0), size_(other.size_), pageCount_(0) {
207 arrayAllocator()->reallocateArrayPageIndex(pages_, pageCount_, minNewPages);
208 JSON_ASSERT_MESSAGE(pageCount_ >= minNewPages,
243 arrayAllocator()->releaseArrayPageIndex(pages_, pageCount_);
253 PageIndex tempPageCount = pageCount_;
254 pageCount_ = other.pageCount_;
255 other.pageCount_ = tempPageCount;
286 if (index >= pageCount_ * itemsPerPage) {
288 arrayAllocator()->reallocateArrayPageIndex(pages_, pageCount_, minNewPages);
[all …]
/external/jsoncpp/include/json/
Dvalue.h811 PageIndex pageCount_; variable