Lines Matching full:hello
59 w.write(XmlEvent::start_element("h:hello").ns("h", "urn:hello-world")).unwrap(); in writing_simple()
60 w.write("hello world").unwrap(); in writing_simple()
66 r#"<h:hello xmlns:h="urn:hello-world">hello world</h:hello>"# in writing_simple()
80 w.write(XmlEvent::start_element("hello")); in writing_empty_elements_with_normalizing()
87 assert_eq!(str::from_utf8(&b).unwrap(), r#"<hello><world /></hello>"#); in writing_empty_elements_with_normalizing()
103 w.write(XmlEvent::start_element("hello")); in writing_empty_elements_without_normalizing()
110 assert_eq!(str::from_utf8(&b).unwrap(), r#"<hello><world></world></hello>"#); in writing_empty_elements_without_normalizing()
126 w.write(XmlEvent::start_element("hello")); in writing_empty_elements_without_pad_self_closing()
133 assert_eq!(str::from_utf8(&b).unwrap(), r#"<hello><world/></hello>"#); in writing_empty_elements_without_pad_self_closing()
148 w.write(XmlEvent::start_element("hello")); in writing_empty_elements_pad_self_closing_explicit()
155 assert_eq!(str::from_utf8(&b).unwrap(), r#"<hello><world /></hello>"#); in writing_empty_elements_pad_self_closing_explicit()
171 w.write(XmlEvent::start_element("hello")); in writing_comments_with_indentation()
182 "<hello> in writing_comments_with_indentation()
187 </hello>"); in writing_comments_with_indentation()
231 XmlEvent::start_element("hello") in attribute_escaping()
237 XmlEvent::start_element("hello") in attribute_escaping()
243 XmlEvent::start_element("hello") in attribute_escaping()
248 XmlEvent::start_element("hello") in attribute_escaping()
254 XmlEvent::start_element("hello") in attribute_escaping()
263 "<hello testLt=\"<\" testGt=\">\" /> in attribute_escaping()
264 <hello testQuot=\""\" testApos=\"'\" /> in attribute_escaping()
265 <hello testAmp=\"&\" /> in attribute_escaping()
266 <hello testNl=\"
\" testCr=\"
\" /> in attribute_escaping()
267 <hello testNl=\"\\n\" testCr=\"\\r\" />" in attribute_escaping()