| /external/python/cpython2/Lib/xml/dom/ |
| D | __init__.py | 61 class DOMException(Exception): class 66 if self.__class__ is DOMException: 68 "DOMException should not be instantiated directly") 75 class IndexSizeErr(DOMException): 78 class DomstringSizeErr(DOMException): 81 class HierarchyRequestErr(DOMException): 84 class WrongDocumentErr(DOMException): 87 class InvalidCharacterErr(DOMException): 90 class NoDataAllowedErr(DOMException): 93 class NoModificationAllowedErr(DOMException): [all …]
|
| /external/python/cpython3/Lib/xml/dom/ |
| D | __init__.py | 62 class DOMException(Exception): class 67 if self.__class__ is DOMException: 69 "DOMException should not be instantiated directly") 76 class IndexSizeErr(DOMException): 79 class DomstringSizeErr(DOMException): 82 class HierarchyRequestErr(DOMException): 85 class WrongDocumentErr(DOMException): 88 class InvalidCharacterErr(DOMException): 91 class NoDataAllowedErr(DOMException): 94 class NoModificationAllowedErr(DOMException): [all …]
|
| /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
| D | DTMNodeProxy.java | 32 import org.w3c.dom.DOMException; 229 * @throws DOMException 232 public final void setPrefix(String prefix) throws DOMException in setPrefix() 234 throw new DTMDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR); in setPrefix() 266 //throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR); in supports() 282 // throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR); in isSupported() 289 * @throws DOMException 292 public final String getNodeValue() throws DOMException in getNodeValue() 300 * @throws DOMException 302 public final String getStringValue() throws DOMException in getStringValue() [all …]
|
| D | DTMNodeIterator.java | 27 import org.w3c.dom.DOMException; 125 * @throws DOMException -- NOT_SUPPORTED_ERROR because I can't think 130 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR); in getFilter() 155 * @throws DOMException - INVALID_STATE_ERR Raised if this method is 158 public Node nextNode() throws DOMException in nextNode() 161 throw new DTMDOMException(DOMException.INVALID_STATE_ERR); in nextNode() 173 * @throws DOMException - INVALID_STATE_ERR Raised if this method is 179 throw new DTMDOMException(DOMException.INVALID_STATE_ERR); in previousNode()
|
| D | DTMNamedNodeMap.java | 25 import org.w3c.dom.DOMException; 152 * @exception DOMException 176 * @exception DOMException 230 * @exception DOMException 240 public Node setNamedItemNS(Node arg) throws DOMException in setNamedItemNS() 259 * @exception DOMException 266 throws DOMException in removeNamedItemNS() 272 * Simple implementation of DOMException. 275 public class DTMException extends org.w3c.dom.DOMException
|
| /external/apache-xml/src/main/java/org/apache/xml/utils/ |
| D | UnImplNode.java | 29 import org.w3c.dom.DOMException; 92 * @throws DOMException 94 public Node appendChild(Node newChild) throws DOMException in appendChild() 288 * @throws DOMException 290 public Attr removeAttributeNode(Attr oldAttr) throws DOMException in removeAttributeNode() 305 * @throws DOMException 307 public Attr setAttributeNode(Attr newAttr) throws DOMException in setAttributeNode() 369 * @throws DOMException 371 public void removeAttribute(String name) throws DOMException in removeAttribute() 382 * @throws DOMException [all …]
|
| /external/apache-xml/src/main/java/org/apache/xalan/templates/ |
| D | ElemLiteralResult.java | 36 import org.w3c.dom.DOMException; 669 * @throws DOMException 671 public Node removeNamedItem(String name) throws DOMException in removeNamedItem() 673 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, in removeNamedItem() 687 * @throws DOMException 690 throws DOMException in removeNamedItemNS() 692 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, in removeNamedItemNS() 705 * @throws DOMException 707 public Node setNamedItem(Node arg) throws DOMException in setNamedItem() 709 throwDOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, in setNamedItem() [all …]
|
| D | ElemTemplateElement.java | 40 import org.w3c.dom.DOMException; 252 * @throws DOMException 254 public Node appendChild(Node newChild) throws DOMException in appendChild() 392 * @throws DOMException 394 public Node replaceChild(Node newChild, Node oldChild) throws DOMException in replaceChild() 432 * @throws DOMException 434 public Node insertBefore(Node newChild, Node refChild) throws DOMException in insertBefore() 487 throw new DOMException(DOMException.NOT_FOUND_ERR, in insertBefore() 502 * @throws DOMException
|
| D | ElemSort.java | 26 import org.w3c.dom.DOMException; 313 * @throws DOMException 315 public Node appendChild(Node newChild) throws DOMException in appendChild()
|
| D | RedundentExprEliminator.java | 600 throws org.w3c.dom.DOMException in findAndEliminateRedundant() 679 throws org.w3c.dom.DOMException in oldFindAndEliminateRedundant() 819 throws org.w3c.dom.DOMException in createPseudoVarDecl() 846 throws org.w3c.dom.DOMException in createGlobalPseudoVarDecl() 877 throws org.w3c.dom.DOMException in createLocalPseudoVarDecl() 899 throws org.w3c.dom.DOMException in addVarDeclToElem()
|
| D | ElemComment.java | 101 * @throws DOMException
|
| D | ElemAttributeSet.java | 142 * @throws DOMException
|
| D | ElemChoose.java | 132 * @throws DOMException
|
| D | ElemText.java | 127 * @throws DOMException
|
| /external/webrtc/api/ |
| D | rtc_error.h | 36 // Maps to OperationError DOMException. 40 // Maps to OperationError DOMException. 44 // Maps to InvalidAccessError or TypeError DOMException depending on context. 49 // Maps to RangeError DOMException. 54 // Maps to SyntaxError DOMException. 58 // Maps to InvalidStateError DOMException. 62 // Maps to InvalidModificationError DOMException. 66 // Maps to NetworkError DOMException. 71 // Maps to OperationError DOMException. 75 // Maps to OperationError DOMException. [all …]
|
| /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
| D | LSSerializerImpl.java | 48 import org.w3c.dom.DOMException; 437 public Object getParameter(String name) throws DOMException { in getParameter() 493 throw new DOMException(DOMException.NOT_FOUND_ERR, msg); in getParameter() 518 public void setParameter(String name, Object value) throws DOMException { in setParameter() 657 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, msg); in setParameter() 674 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, msg); in setParameter() 740 throw new DOMException(DOMException.TYPE_MISMATCH_ERR, msg); in setParameter() 747 throw new DOMException(DOMException.NOT_FOUND_ERR, msg); in setParameter() 757 throw new DOMException(DOMException.TYPE_MISMATCH_ERR, msg); in setParameter() 767 throw new DOMException(DOMException.TYPE_MISMATCH_ERR, msg); in setParameter() [all …]
|
| /external/apache-xml/src/main/java/org/apache/xml/dtm/ |
| D | DTMDOMException.java | 24 * Simple implementation of DOMException. 30 public class DTMDOMException extends org.w3c.dom.DOMException
|
| /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
| D | DOM2DTMdefaultNamespaceDeclarationNode.java | 34 import org.w3c.dom.DOMException; 577 * @exception DOMException 579 * @exception DOMException 586 throws DOMException { in setTextContent() 627 * @exception DOMException 629 * @exception DOMException 635 public String getTextContent() throws DOMException { in getTextContent() 647 public short compareDocumentPosition(Node other) throws DOMException { in compareDocumentPosition()
|
| /external/cldr/tools/scripts/tr-archive/ |
| D | package-lock.json | 45 "domexception": "^4.0.0", string 263 "node_modules/domexception": { 265 "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", 426 "domexception": "^4.0.0", string 849 "domexception": "^4.0.0", string 1015 "domexception": { object 1017 "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", 1129 "domexception": "^4.0.0", string
|
| /external/apache-xml/src/main/java/org/apache/xpath/domapi/ |
| D | XPathStylesheetDOM3Exception.java | 21 * This class is needed to throw a org.w3c.dom.DOMException with proper error code in
|
| /external/jsoup/src/main/java/org/jsoup/helper/ |
| D | W3CDom.java | 12 import org.w3c.dom.DOMException; 213 } catch (DOMException ignored) { in fromJsoup() 392 } catch (DOMException e) { in head()
|
| /external/apache-xml/src/main/java/org/apache/xpath/ |
| D | NodeSet.java | 28 import org.w3c.dom.DOMException; 237 * @throws DOMException 241 public Node nextNode() throws DOMException in nextNode() 261 * @throws DOMException 267 public Node previousNode() throws DOMException in previousNode()
|
| /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
| D | web-animations-next-animation.js | 183 reject({type: DOMException.ABORT_ERR, name: 'AbortError'}); 207 reject({type: DOMException.ABORT_ERR, name: 'AbortError'});
|
| D | keyframe-interpolations.js | 61 type: DOMException.NOT_SUPPORTED_ERR,
|
| /external/testng/src/main/java/org/testng/xml/dom/ |
| D | XDom.java | 18 import org.w3c.dom.DOMException; 183 … (IllegalArgumentException | InvocationTargetException | IllegalAccessException | DOMException e) { in setText()
|