Home | History | Annotate | Download | only in common

Lines Matching defs:XmlReader

13 #include "libxml/xmlreader.h"
23 XmlReader::XmlReader()
26 error_func_(this, &XmlReader::GenericErrorCallback)) {
29 XmlReader::~XmlReader() {
35 void XmlReader::GenericErrorCallback(void* context, const char* msg, ...) {
39 XmlReader* reader = static_cast<XmlReader*>(context);
44 bool XmlReader::Load(const std::string& input) {
54 bool XmlReader::LoadFile(const FilePath& file_path) {
70 bool XmlReader::NodeAttribute(const char* name, std::string* out) {
79 bool XmlReader::ReadElementContent(std::string* content) {
113 bool XmlReader::SkipToElement() {