Lines Matching refs:XmlParser
22 constexpr OHOS::HiviewDFX::HiLogLabel LABEL = {LOG_CORE, LOG_DOMAIN_PLAYER, "XmlParser"};
27 XmlParser::~XmlParser()
33 bool XmlParser::LoadConfiguration(const char *xmlPath)
36 CHECK_AND_RETURN_RET_LOG(mDoc_ != nullptr, false, "XmlParser xmlReadFile failed");
40 bool XmlParser::Parse()
43 CHECK_AND_RETURN_RET_LOG(root != nullptr, false, "XmlParser xmlDocGetRootElement failed");
47 void XmlParser::Destroy()
55 bool XmlParser::IsNumberArray(const std::vector<std::string> &strArray) const
67 bool XmlParser::TransStrAsRange(const std::string &str, Range &range) const
89 std::vector<int32_t> XmlParser::TransStrAsIntegerArray(const std::vector<std::string> &spilt) const
102 bool XmlParser::SpiltKeyList(const std::string &str, const std::string &delim,
122 bool XmlParser::SetCapabilityStringData(std::unordered_map<std::string, std::string&> dataMap,
129 bool XmlParser::SetCapabilityRangeData(std::unordered_map<std::string, Range&> dataMap,