Lines Matching refs:createElement

204         XElement xElemFoo = xDoc.createElement("foo");  in testXDocument()
576 XElement xElemFoo = xDoc.createElement("foo"); in testXDocumentFragment()
777 XElement xElemFoo = xDoc.createElement("foo"); in testXElement()
1171 XElement xElemFoo = xDoc.createElement("foo"); in testXAttr()
2281 XElement xRoot = xDoc.createElement("root"); in testXNodeList_ChildList()
2282 XElement xFoo = xDoc.createElement("foo"); in testXNodeList_ChildList()
2283 XElement xBar = xDoc.createElement("bar"); in testXNodeList_ChildList()
2284 XElement xBaz = xDoc.createElement("baz"); in testXNodeList_ChildList()
2324 XElement xRoot = xDoc.createElement("root"); in testXNodeList_ElementList()
2325 XElement xBar = xDoc.createElement("bar"); in testXNodeList_ElementList()
2326 XElement xFoo1 = xDoc.createElement("foo"); in testXNodeList_ElementList()
2327 XElement xFoo2 = xDoc.createElement("foo"); in testXNodeList_ElementList()
2328 XElement xFoo3 = xDoc.createElement("foo"); in testXNodeList_ElementList()
2373 XElement xElem = xDoc.createElement("foo"); in testXNamedNodeMap_AttributesMap()
2459 XElement xRoot = xDoc.createElement("root"); in testXXPathAPI()
2461 XElement xFoo1 = xDoc.createElement("foo"); in testXXPathAPI()
2462 XElement xFoo2 = xDoc.createElement("foo"); in testXXPathAPI()
2464 XElement xBar = xDoc.createElement("bar"); in testXXPathAPI()
2597 XElement xRoot = xDoc.createElement("root"); in testXXPathObject()
2599 XElement xFoo1 = xDoc.createElement("foo"); in testXXPathObject()
2600 XElement xFoo2 = xDoc.createElement("foo"); in testXXPathObject()
2602 XElement xBar = xDoc.createElement("bar"); in testXXPathObject()
2669 XElement xRoot = xDoc.createElement("root"); in testXNodeList_NodeList()
2671 XElement xFoo1 = xDoc.createElement("foo"); in testXNodeList_NodeList()
2672 XElement xFoo2 = xDoc.createElement("foo"); in testXNodeList_NodeList()
2674 XElement xBar = xDoc.createElement("bar"); in testXNodeList_NodeList()
2802 public XElement createElement(String n) { in createElement() method in DOMTest.MockDoc