Lines Matching defs:errors

84 	string errors;
85 if (!jsonReader->parse(in.data(), in.data() + in.size(), &jsonRoot, &errors))
693 string errors;
694 bool parsingSuccessful = context.reader->parse(graphicsPipelineCreateInfo.c_str(), graphicsPipelineCreateInfo.c_str() + graphicsPipelineCreateInfo.size(), &jsonRoot, &errors);
696 TCU_THROW(InternalError, ("JSON parsing error: " + errors).c_str());
705 string errors;
706 bool parsingSuccessful = context.reader->parse(computePipelineCreateInfo.c_str(), computePipelineCreateInfo.c_str() + computePipelineCreateInfo.size(), &jsonRoot, &errors);
708 TCU_THROW(InternalError, ("JSON parsing error: " + errors).c_str());
717 string errors;
718 bool parsingSuccessful = context.reader->parse(renderPassCreateInfo.c_str(), renderPassCreateInfo.c_str() + renderPassCreateInfo.size(), &jsonRoot, &errors);
720 TCU_THROW(InternalError, ("JSON parsing error: " + errors).c_str());
729 string errors;
730 bool parsingSuccessful = context.reader->parse(renderPassCreateInfo.c_str(), renderPassCreateInfo.c_str() + renderPassCreateInfo.size(), &jsonRoot, &errors);
732 TCU_THROW(InternalError, ("JSON parsing error: " + errors).c_str());
741 string errors;
742 bool parsingSuccessful = context.reader->parse(descriptorSetLayoutCreateInfo.c_str(), descriptorSetLayoutCreateInfo.c_str() + descriptorSetLayoutCreateInfo.size(), &jsonRoot, &errors);
744 TCU_THROW(InternalError, ("JSON parsing error: " + errors).c_str());
753 string errors;
754 bool parsingSuccessful = context.reader->parse(pipelineLayoutCreateInfo.c_str(), pipelineLayoutCreateInfo.c_str() + pipelineLayoutCreateInfo.size(), &jsonRoot, &errors);
756 TCU_THROW(InternalError, ("JSON parsing error: " + errors).c_str());
765 string errors;
766 bool parsingSuccessful = context.reader->parse(deviceMemoryReservation.c_str(), deviceMemoryReservation.c_str() + deviceMemoryReservation.size(), &jsonRoot, &errors);
768 TCU_THROW(InternalError, ("JSON parsing error: " + errors).c_str());
777 string errors;
778 bool parsingSuccessful = context.reader->parse(pipelineIdentifierInfo.c_str(), pipelineIdentifierInfo.c_str() + pipelineIdentifierInfo.size(), &jsonRoot, &errors);
780 TCU_THROW(InternalError, ("JSON parsing error: " + errors).c_str());
789 string errors;
790 bool parsingSuccessful = context.reader->parse(samplerCreateInfo.c_str(), samplerCreateInfo.c_str() + samplerCreateInfo.size(), &jsonRoot, &errors);
792 TCU_THROW(InternalError, ("JSON parsing error: " + errors).c_str());
801 std::string errors;
802 bool parsingSuccessful = context.reader->parse(samplerYcbcrConversionCreateInfo.c_str(), samplerYcbcrConversionCreateInfo.c_str() + samplerYcbcrConversionCreateInfo.size(), &jsonRoot, &errors);
804 TCU_THROW(InternalError, (std::string("JSON parsing error: ") + errors).c_str());
813 std::string errors;
814 bool parsingSuccessful = context.reader->parse(featuresJson.c_str(), featuresJson.c_str() + featuresJson.size(), &jsonRoot, &errors);
816 TCU_THROW(InternalError, (std::string("JSON parsing error: ") + errors).c_str());
824 std::string errors;
825 bool parsingSuccessful = context.reader->parse(chainJson.c_str(), chainJson.c_str() + chainJson.size(), &jsonRoot, &errors);
827 TCU_THROW(InternalError, (std::string("JSON parsing error: ") + errors).c_str());
861 string errors;
862 bool parsingSuccessful = context.reader->parse(shaderModuleCreate.c_str(), shaderModuleCreate.c_str() + shaderModuleCreate.size(), &jsonRoot, &errors);
864 TCU_THROW(InternalError, ("JSON parsing error: " + errors).c_str());