Lines Matching refs:in

8  * "License"); you may not use this file except in compliance
13 * Unless required by applicable law or agreed to in writing,
41 string getAttribute([in] string name);
46 XAttr getAttributeNode([in] string name);
51 XAttr getAttributeNodeNS([in] string namespaceURI,[in]
57 string getAttributeNS([in] string namespaceURI, [in] string localName);
61 in the order in which they are
62 encountered in a preorder traversal of this Element tree.
64 XNodeList getElementsByTagName([in] string name);
68 name and namespace URI in the order in which they are encountered in
71 XNodeList getElementsByTagNameNS([in] string namespaceURI,[in] string localName);
82 boolean hasAttribute([in] string name);
88 boolean hasAttributeNS([in] string namespaceURI,[in] string localName);
95 void removeAttribute([in] string name) raises (DOMException);
103 XAttr removeAttributeNode([in] XAttr oldAttr) raises (DOMException);
110 void removeAttributeNS([in] string namespaceURI,[in] string localName) raises (DOMException);
118 void setAttribute([in] string name,[in] string value) raises (DOMException);
125 …her Element object. The DOM user must explicitly clone Attr nodes to re-use them in other elements.
127 XAttr setAttributeNode([in] XAttr newAttr) raises (DOMException);
134 …her Element object. The DOM user must explicitly clone Attr nodes to re-use them in other elements.
137 XAttr setAttributeNodeNS([in] XAttr newAttr) raises (DOMException);
144 …NAMESPACE_ERR: Raised if the qualifiedName is malformed per the Namespaces in XML specification, i…
148 [in] string namespaceURI, [in] string qualifiedName, [in] string value) raises (DOMException);