Home | History | Annotate | Download | only in dom

Lines Matching refs:doc

59         Document doc;
67 doc = (Document) load("staffNS", builder);
68 domImpl = doc.getImplementation();
75 Document doc;
80 doc = (Document) load("staffNS", builder);
81 docElem = doc.getDocumentElement();
82 element = doc.createElementNS("test", "employeeId");
84 childList = doc.getElementsByTagNameNS("*", "employeeId");
89 Document doc;
91 doc = (Document) load("staffNS", builder);
92 childList = doc.getElementsByTagNameNS("**", "*");
97 Document doc;
101 doc = (Document) load("staffNS", builder);
102 childList = doc.getElementsByTagNameNS(nullNS, "0");
107 Document doc;
109 doc = (Document) load("staffNS", builder);
110 childList = doc.getElementsByTagNameNS("null", "elementId");