Home
last modified time | relevance | path

Searched refs:xmlDecode (Results 1 – 4 of 4) sorted by relevance

/external/xmlrpcpp/test/
DTestXml.cpp24 assert(empty == XmlRpcUtil::xmlDecode(empty)); in main()
26 assert(empty == XmlRpcUtil::xmlDecode("")); in main()
29 assert(XmlRpcUtil::xmlDecode(XmlRpcUtil::xmlEncode(raw)) == raw); in main()
48 std::cout << XmlRpcUtil::xmlDecode(s) << std::endl; in main()
/external/xmlrpcpp/src/
DXmlRpcUtil.h49 static std::string xmlDecode(const std::string& encoded);
DXmlRpcUtil.cpp190 XmlRpcUtil::xmlDecode(const std::string& encoded) in xmlDecode() function in XmlRpcUtil
DXmlRpcValue.cpp383 …_value.asString = new std::string(XmlRpcUtil::xmlDecode(valueXml.substr(*offset, valueEnd-*offset)… in stringFromXml()