Searched refs:elementCount (Results 1 – 4 of 4) sorted by relevance
378 bool EndArray(SizeType elementCount) { in EndArray() argument380 uint64_t* e = stack_.template Pop<uint64_t>(elementCount); in EndArray()381 for (SizeType i = 0; i < elementCount; i++) in EndArray()1222 bool EndArray(Context& context, SizeType elementCount) const { in EndArray() argument1226 if (elementCount < minItems_) { in EndArray()1227 context.error_handler.TooFewItems(elementCount, minItems_); in EndArray()1231 if (elementCount > maxItems_) { in EndArray()1232 context.error_handler.TooManyItems(elementCount, maxItems_); in EndArray()2883 bool EndArray(SizeType elementCount) {2886 RAPIDJSON_SCHEMA_HANDLE_PARALLEL_(EndArray, (elementCount));[all …]
246 bool EndArray(SizeType elementCount = 0) {247 (void)elementCount;
824 for (SizeType elementCount = 0;;) { in ParseArray() local828 ++elementCount; in ParseArray()837 if (RAPIDJSON_UNLIKELY(!handler.EndArray(elementCount))) in ParseArray()846 if (RAPIDJSON_UNLIKELY(!handler.EndArray(elementCount))) in ParseArray()
2856 bool EndArray(SizeType elementCount) {2857 ValueType* elements = stack_.template Pop<ValueType>(elementCount);2858 stack_.template Top<ValueType>()->SetArrayRaw(elements, elementCount, GetAllocator());