Home | History | Annotate | Download | only in listener

Lines Matching refs:buzz

18 std::string XmlElementToString(const buzz::XmlElement& xml_element) {
20 buzz::XmlPrinter::PrintXml(&xml_stream, &xml_element);
24 buzz::XmlElement* MakeBoolXmlElement(const char* name, bool value) {
25 const buzz::QName elementQName(buzz::STR_EMPTY, name);
26 const buzz::QName boolAttrQName(buzz::STR_EMPTY, "bool");
27 buzz::XmlElement* bool_xml_element =
28 new buzz::XmlElement(elementQName, true);
33 buzz::XmlElement* MakeIntXmlElement(const char* name, int value) {
34 const buzz::QName elementQName(buzz::STR_EMPTY, name);
35 const buzz::QName intAttrQName(buzz::STR_EMPTY, "int");
36 buzz::XmlElement* int_xml_element =
37 new buzz::XmlElement(elementQName, true);
42 buzz::XmlElement* MakeStringXmlElement(const char* name, const char* value) {
43 const buzz::QName elementQName(buzz::STR_EMPTY, name);
44 const buzz::QName dataAttrQName(buzz::STR_EMPTY, "data");
45 buzz::XmlElement* data_xml_element =
46 new buzz::XmlElement(elementQName, true);