Searched refs:doc (Results 26 - 50 of 1205) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/doc/tutorial/
H A Dincludexpath.c7 xmlDocPtr doc;
8 doc = xmlParseFile(docname);
10 if (doc == NULL ) {
15 return doc;
19 getnodeset (xmlDocPtr doc, xmlChar *xpath){
24 context = xmlXPathNewContext(doc);
46 xmlDocPtr doc;
59 doc = getdoc(docname);
60 result = getnodeset (doc, xpath);
64 keyword = xmlNodeListGetString(doc, nodese
[all...]
H A Dincludekeyword.c9 parseStory (xmlDocPtr doc, xmlNodePtr cur) {
15 key = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
27 xmlDocPtr doc;
30 doc = xmlParseFile(docname);
32 if (doc == NULL ) {
37 cur = xmlDocGetRootElement(doc);
41 xmlFreeDoc(doc);
47 xmlFreeDoc(doc);
54 parseStory (doc, cur);
60 xmlFreeDoc(doc);
[all...]
H A Dincludegetattribute.c9 getReference (xmlDocPtr doc, xmlNodePtr cur) {
28 xmlDocPtr doc;
31 doc = xmlParseFile(docname);
33 if (doc == NULL ) {
38 cur = xmlDocGetRootElement(doc);
42 xmlFreeDoc(doc);
48 xmlFreeDoc(doc);
52 getReference (doc, cur);
53 xmlFreeDoc(doc);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/ipkg-install/usr/share/doc/libxml2-2.7.2/html/tutorial/
H A Dincludexpath.c7 xmlDocPtr doc;
8 doc = xmlParseFile(docname);
10 if (doc == NULL ) {
15 return doc;
19 getnodeset (xmlDocPtr doc, xmlChar *xpath){
24 context = xmlXPathNewContext(doc);
46 xmlDocPtr doc;
59 doc = getdoc(docname);
60 result = getnodeset (doc, xpath);
64 keyword = xmlNodeListGetString(doc, nodese
[all...]
H A Dincludekeyword.c9 parseStory (xmlDocPtr doc, xmlNodePtr cur) {
15 key = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
27 xmlDocPtr doc;
30 doc = xmlParseFile(docname);
32 if (doc == NULL ) {
37 cur = xmlDocGetRootElement(doc);
41 xmlFreeDoc(doc);
47 xmlFreeDoc(doc);
54 parseStory (doc, cur);
60 xmlFreeDoc(doc);
[all...]
H A Dincludegetattribute.c9 getReference (xmlDocPtr doc, xmlNodePtr cur) {
28 xmlDocPtr doc;
31 doc = xmlParseFile(docname);
33 if (doc == NULL ) {
38 cur = xmlDocGetRootElement(doc);
42 xmlFreeDoc(doc);
48 xmlFreeDoc(doc);
52 getReference (doc, cur);
53 xmlFreeDoc(doc);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/doc/tutorial/
H A Dincludexpath.c7 xmlDocPtr doc;
8 doc = xmlParseFile(docname);
10 if (doc == NULL ) {
15 return doc;
19 getnodeset (xmlDocPtr doc, xmlChar *xpath){
24 context = xmlXPathNewContext(doc);
46 xmlDocPtr doc;
59 doc = getdoc(docname);
60 result = getnodeset (doc, xpath);
64 keyword = xmlNodeListGetString(doc, nodese
[all...]
H A Dincludekeyword.c9 parseStory (xmlDocPtr doc, xmlNodePtr cur) {
15 key = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
27 xmlDocPtr doc;
30 doc = xmlParseFile(docname);
32 if (doc == NULL ) {
37 cur = xmlDocGetRootElement(doc);
41 xmlFreeDoc(doc);
47 xmlFreeDoc(doc);
54 parseStory (doc, cur);
60 xmlFreeDoc(doc);
[all...]
H A Dincludegetattribute.c9 getReference (xmlDocPtr doc, xmlNodePtr cur) {
28 xmlDocPtr doc;
31 doc = xmlParseFile(docname);
33 if (doc == NULL ) {
38 cur = xmlDocGetRootElement(doc);
42 xmlFreeDoc(doc);
48 xmlFreeDoc(doc);
52 getReference (doc, cur);
53 xmlFreeDoc(doc);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/python/tests/
H A Dtst.py8 doc = libxml2.parseFile("tst.xml") variable
9 if doc.name != "tst.xml":
10 print "doc.name failed"
12 root = doc.children
13 if root.name != "doc":
20 doc.freeDoc()
H A Dattribs.py11 doc = libxml2.parseDoc( variable
20 elem = doc.getRootElement()
26 doc.freeDoc()
H A Dserialize.py11 doc = libxml2.parseDoc("""<root><foo>hello</foo></root>""")
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)
71 str = doc.serialize()
77 str = doc
[all...]
H A Dnsdel.py28 doc = libxml2.parseDoc(instance) variable
29 node = doc.getRootElement()
34 doc.freeDoc()
37 doc = libxml2.parseDoc(instance) variable
38 node = doc.getRootElement()
43 doc.freeDoc()
46 doc = libxml2.newDoc("1.0") variable
47 root = doc.newChild(None, "root", None)
51 doc.reconciliateNs(root)
53 doc
[all...]
H A Dxpath.py12 doc = libxml2.parseFile("tst.xml") variable
13 if doc.name != "tst.xml":
14 print "doc.name error"
17 ctxt = doc.xpathNewContext()
22 if res[0].name != "doc" or res[1].name != "foo":
33 doc.freeDoc()
37 doc = libxml2.parseFile("tst.xml") variable
38 ctxt = doc.xpathNewContext()
40 doc.freeDoc()
H A Dbuild.py8 doc = libxml2.newDoc("1.0") variable
9 comment = doc.newDocComment("This is a generated document")
10 doc.addChild(comment)
12 doc.addChild(pi)
13 root = doc.newChild(None, "doc", None)
14 ns = root.newNs("http://example.com/doc", "my")
19 doc.saveFile("tmp.xml")
20 doc.freeDoc()
22 doc variable
[all...]
H A Dctxterror.py29 doc = parserCtxt.doc() variable
30 doc.freeDoc()
44 doc = parserCtxt.doc() variable
45 doc.freeDoc()
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/python/tests/
H A Dtst.py8 doc = libxml2.parseFile("tst.xml") variable
9 if doc.name != "tst.xml":
10 print "doc.name failed"
12 root = doc.children
13 if root.name != "doc":
20 doc.freeDoc()
H A Dattribs.py11 doc = libxml2.parseDoc( variable
20 elem = doc.getRootElement()
26 doc.freeDoc()
H A Dserialize.py11 doc = libxml2.parseDoc("""<root><foo>hello</foo></root>""")
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)
71 str = doc.serialize()
77 str = doc
[all...]
H A Dnsdel.py28 doc = libxml2.parseDoc(instance) variable
29 node = doc.getRootElement()
34 doc.freeDoc()
37 doc = libxml2.parseDoc(instance) variable
38 node = doc.getRootElement()
43 doc.freeDoc()
46 doc = libxml2.newDoc("1.0") variable
47 root = doc.newChild(None, "root", None)
51 doc.reconciliateNs(root)
53 doc
[all...]
H A Dxpath.py12 doc = libxml2.parseFile("tst.xml") variable
13 if doc.name != "tst.xml":
14 print "doc.name error"
17 ctxt = doc.xpathNewContext()
22 if res[0].name != "doc" or res[1].name != "foo":
33 doc.freeDoc()
37 doc = libxml2.parseFile("tst.xml") variable
38 ctxt = doc.xpathNewContext()
40 doc.freeDoc()
H A Dbuild.py8 doc = libxml2.newDoc("1.0") variable
9 comment = doc.newDocComment("This is a generated document")
10 doc.addChild(comment)
12 doc.addChild(pi)
13 root = doc.newChild(None, "doc", None)
14 ns = root.newNs("http://example.com/doc", "my")
19 doc.saveFile("tmp.xml")
20 doc.freeDoc()
22 doc variable
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/samples/ogl/ogledit/
H A Dmakefile.vms25 OBJS = docview.obj view.obj doc.obj
26 OBJLIST =docview.obj,view.obj,doc.obj
39 docview.$(OBJSUFF) : docview.$(SRCSUFF) docview.h doc.h view.h
41 doc.$(OBJSUFF) : doc.$(SRCSUFF) doc.h
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/docview/
H A Dmakefile.vms25 OBJS = docview.obj view.obj doc.obj
26 OBJLIST =docview.obj,view.obj,doc.obj
39 docview.$(OBJSUFF) : docview.$(SRCSUFF) docview.h doc.h view.h
41 doc.$(OBJSUFF) : doc.$(SRCSUFF) doc.h
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/docs/examples/
H A Dversion-check.pl41 my %doc;
48 $doc{$sym}=$a[0]; # when it was introduced
81 my $r = age($doc{$a}) <=> age($doc{$b});
93 my $newver = $doc{$newsym};
98 if($doc{$w} eq $newver) {

Completed in 228 milliseconds

1234567891011>>