HomeSort by relevance Sort by last modified time
    Searched refs:NOT_SUPPORTED_ERR (Results 1 - 25 of 48) sorted by null

1 2

  /libcore/luni/src/main/java/org/w3c/dom/
DOMException.java 81 public static final short NOT_SUPPORTED_ERR = 9;
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 68 * <br>NOT_SUPPORTED_ERR: May be raised by DOM implementations which do
79 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Not Implemented");
109 * <br>NOT_SUPPORTED_ERR: May be raised by DOM implementations which do
120 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Not Implemented");
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 55 final String NOT_SUPPORTED_ERR="Unsupported operation on pseudonode";
90 public void setNodeValue(String value) {throw new DTMException(NOT_SUPPORTED_ERR);}
91 public void setValue(String value) {throw new DTMException(NOT_SUPPORTED_ERR);}
92 public void setPrefix(String value) {throw new DTMException(NOT_SUPPORTED_ERR);}
93 public Node insertBefore(Node a, Node b) {throw new DTMException(NOT_SUPPORTED_ERR);}
94 public Node replaceChild(Node a, Node b) {throw new DTMException(NOT_SUPPORTED_ERR);}
95 public Node appendChild(Node a) {throw new DTMException(NOT_SUPPORTED_ERR);}
96 public Node removeChild(Node a) {throw new DTMException(NOT_SUPPORTED_ERR);}
98 public Node cloneNode(boolean deep) {throw new DTMException(NOT_SUPPORTED_ERR);}
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 266 //throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
282 // throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
371 // throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
560 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
623 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
639 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
649 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
661 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
673 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
688 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
    [all...]
DTMNodeIterator.java 130 throw new DTMDOMException(DOMException.NOT_SUPPORTED_ERR);
  /packages/apps/Mms/src/com/android/mms/dom/
NodeImpl.java 230 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
234 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
238 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
242 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
250 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
258 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
267 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
ElementImpl.java 160 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
165 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
170 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
DocumentImpl.java 179 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
183 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
187 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
192 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
importNode16.java 35 * Document should raise NOT_SUPPORTED_ERR DOMException if
44 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('ID-258A00AF')/constant[@name='NOT_SUPPORTED_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('ID-258A00AF')/constant[@name='NOT_SUPPORTED_ERR'])</a>
46 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])</a>
84 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
importNode17.java 35 * Document should raise NOT_SUPPORTED_ERR DOMException if
41 * Method should raise NOT_SUPPORTED_ERR DOMException.
44 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('ID-258A00AF')/constant[@name='NOT_SUPPORTED_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('ID-258A00AF')/constant[@name='NOT_SUPPORTED_ERR'])</a>
46 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])">http://www.w3.org/TR/DOM-Level-2-Core/core#xpointer(id('Core-Document-importNode')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='NOT_SUPPORTED_ERR'])</a>
82 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
documentimportnode06.java 35 * A NOT_SUPPORTED_ERR is raised if the type of node being imported is
39 * Since Document nodes cannot be imported, a NOT_SUPPORTED_ERR should be raised.
82 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
documentimportnode07.java 35 * A NOT_SUPPORTED_ERR is raised if the type of node being imported is
40 * NOT_SUPPORTED_ERR should be raised.
85 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
documentimportnode08.java 35 * A NOT_SUPPORTED_ERR is raised if the type of node being imported is
39 * node. Since DocumentType nodes cannot be imported, a NOT_SUPPORTED_ERR should be raised.
89 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMException.idl 50 const unsigned short NOT_SUPPORTED_ERR = 9;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
__init__.py 51 NOT_SUPPORTED_ERR = 9
100 code = NOT_SUPPORTED_ERR
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
__init__.py 51 NOT_SUPPORTED_ERR = 9
100 code = NOT_SUPPORTED_ERR
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentinvalidcharacterexceptioncreateentref.java 77 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
documentinvalidcharacterexceptioncreateentref1.java 74 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
documentinvalidcharacterexceptioncreatepi.java 77 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
documentinvalidcharacterexceptioncreatepi1.java 74 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
hc_attrappendchild4.java 84 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
hc_attrgetvalue2.java 83 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
hc_attrinsertbefore5.java 85 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
hc_nodevalue03.java 71 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);
hc_attrinsertbefore7.java 89 success = (ex.code == DOMException.NOT_SUPPORTED_ERR);

Completed in 961 milliseconds

1 2