Home
last modified time | relevance | path

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

/hardware/interfaces/audio/common/all-versions/test/utility/include/utility/
DValidateXml.h35 const char* xmlFilePath, const char* xsdFilePath);
38 #define ASSERT_VALID_XML(xmlFilePath, xsdFilePath) \ argument
40 xmlFilePath, xsdFilePath)
43 #define EXPECT_VALID_XML(xmlFilePath, xsdFilePath) \ argument
45 xmlFilePath, xsdFilePath)
55 const char* xmlFileName, std::vector<const char*> xmlFileLocations, const char* xsdFilePath);
58 #define ASSERT_VALID_XML_MULTIPLE_LOCATIONS(xmlFileName, xmlFileLocations, xsdFilePath) \ argument
61 xmlFileName, xmlFileLocations, xsdFilePath)
64 #define EXPECT_VALID_XML_MULTIPLE_LOCATIONS(xmlFileName, xmlFileLocations, xsdFilePath) \ argument
67 xmlFileName, xmlFileLocations, xsdFilePath)
[all …]
/hardware/interfaces/audio/common/all-versions/test/utility/src/
DValidateXml.cpp95 const char* xmlFilePath, const char* xsdFilePath) { in validateXml()
101 "\n Which is: " + xsdFilePath + "\nLibxml2 errors:\n" + libxml2.getErrors(); in validateXml()
104 auto schemaParserCtxt = make_xmlUnique(xmlSchemaNewParserCtxt(xsdFilePath)); in validateXml()
135 const char* xmlFileName, std::vector<const char*> xmlFileLocations, const char* xsdFilePath) { in validateXmlMultipleLocations() argument
148 auto result = validateXml("xmlFilePath", xsdFilePathExpr, xmlFilePath.c_str(), xsdFilePath); in validateXmlMultipleLocations()