Lines Matching refs:doc
11 doc = libxml2.parseDoc("""<root><foo>hello</foo></root>""") variable
12 str = doc.serialize()
18 str = doc.serialize("iso-8859-1")
24 str = doc.serialize(format=1)
32 str = doc.serialize("iso-8859-1", 1)
44 root = doc.getRootElement()
65 doc.freeDoc()
70 doc = libxml2.htmlParseDoc("""<html><head><title>Hello</title><body><p>hello</body></html>""", None) variable
71 str = doc.serialize()
77 str = doc.serialize("ISO-8859-1")
83 str = doc.serialize(format=1)
95 str = doc.serialize("iso-8859-1", 1)
111 doc.htmlSetMetaEncoding(None)
112 root = doc.getRootElement()
142 doc.freeDoc()