Home
last modified time | relevance | path

Searched refs:HIERARCHY_REQUEST_ERR (Results 1 – 25 of 25) sorted by relevance

/libcore/luni/src/main/java/org/w3c/dom/
DDOMException.java52 public static final short HIERARCHY_REQUEST_ERR = 3; field in DOMException
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DInnerNodeImpl.java97 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); in insertBefore()
121 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); in insertChildAt()
181 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); in removeChild()
DNodeImpl.java75 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); in appendChild()
145 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); in insertBefore()
156 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); in removeChild()
160 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); in replaceChild()
DElementImpl.java377 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); in setNamedItem()
385 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, null); in setNamedItemNS()
DDocumentImpl.java420 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, in insertChildAt()
424 throw new DOMException(DOMException.HIERARCHY_REQUEST_ERR, in insertChildAt()
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
Dhc_nodeappendchildinvalidnodetype.java82 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dnodeappendchildinvalidnodetype.java83 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dnodeappendchildnodeancestor.java84 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dhc_nodeappendchildnodeancestor.java84 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dnodeinsertbeforeinvalidnodetype.java87 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dnodereplacechildinvalidnodetype.java87 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dhc_nodereplacechildinvalidnodetype.java88 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dhc_nodeinsertbeforeinvalidnodetype.java88 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dhc_attrappendchild2.java79 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dhc_nodeinsertbeforenodeancestor.java86 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dnodereplacechildnodeancestor.java88 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dnodeinsertbeforenodeancestor.java88 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dhc_nodereplacechildnodeancestor.java86 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dhc_attrappendchild4.java96 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dhc_attrinsertbefore5.java97 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dhc_attrinsertbefore7.java104 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
Dhc_namednodemapinvalidtype1.java75 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dnamednodemapsetnameditemns10.java96 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
Dnamednodemapsetnameditemns11.java97 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in runTest()
/libcore/luni/src/test/java/tests/org/w3c/dom/
DHCNamedNodeMapInvalidType.java85 success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR); in testNamedNodeMapInvalidType()