Home
last modified time | relevance | path

Searched refs:memberCount (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/rapidjson/1.1.0/include/rapidjson/
H A Dprettywriter.h125 bool EndObject(SizeType memberCount = 0) {
126 (void)memberCount;
149 bool EndArray(SizeType memberCount = 0) {
150 (void)memberCount;
H A Dschema.h197 bool EndObject(SizeType memberCount) { in EndObject() argument
199 uint64_t* kv = stack_.template Pop<uint64_t>(memberCount * 2); in EndObject()
200 for (SizeType i = 0; i < memberCount; i++) in EndObject()
828 bool EndObject(Context& context, SizeType memberCount) const { in EndObject() argument
835 if (memberCount < minProperties_) in EndObject()
838 if (memberCount > maxProperties_) in EndObject()
1715 bool EndObject(SizeType memberCount) {
1717 RAPIDJSON_SCHEMA_HANDLE_PARALLEL_(EndObject, (memberCount));
1718 if (!CurrentSchema().EndObject(CurrentContext(), memberCount)) return valid_ = false;
1719 RAPIDJSON_SCHEMA_HANDLE_END_(EndObject, (memberCount));
H A Dwriter.h212 bool EndObject(SizeType memberCount = 0) {
213 (void)memberCount;
H A Dreader.h605 for (SizeType memberCount = 0;;) { in ParseObject() local
627 ++memberCount; in ParseObject()
637 if (RAPIDJSON_UNLIKELY(!handler.EndObject(memberCount))) in ParseObject()
646 if (RAPIDJSON_UNLIKELY(!handler.EndObject(memberCount))) in ParseObject()
H A Ddocument.h2361 bool EndObject(SizeType memberCount) {
2362 …typename ValueType::Member* members = stack_.template Pop<typename ValueType::Member>(memberCount);
2363 stack_.template Top<ValueType>()->SetObjectRaw(members, memberCount, GetAllocator());