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

1 2 3 4 5 6 7 8 91011

  /libcore/luni/src/main/java/javax/xml/namespace/
NamespaceContext.java 85 * <code>getNamespaceURI(prefix)</code>
129 String getNamespaceURI(String prefix);
  /libcore/luni/src/main/java/org/w3c/dom/
NameList.java 41 public String getNamespaceURI(int index);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodegetnamespaceuri03.java 34 * The method getNamespaceURI returns the namespace URI of this node, or null if it is unspecified
39 * Retreive their namespaceURI's using getNamespaceURI and verrify if it is correct.
89 elemNSURI = elementNS.getNamespaceURI();
90 elemNSURINull = element.getNamespaceURI();
91 attrNSURI = attrNS.getNamespaceURI();
92 attrNSURINull = attr.getNamespaceURI();
documentcreateattributeNS02.java 79 namespaceURI = attribute1.getNamespaceURI();
90 namespaceURI = attribute2.getNamespaceURI();
namespaceURI04.java 34 * The "getNamespaceURI()" method for a Node
37 * Retrieve the second employee node and invoke the "getNamespaceURI()"
72 employeeNamespace = testEmployee.getNamespaceURI();
prefix11.java 76 namespaceURI = employeeNode.getNamespaceURI();
documentcreateelementNS01.java 90 nsURI = element.getNamespaceURI();
documentimportnode05.java 92 namespaceURI = importedAttr.getNamespaceURI();
elementsetattributenodens01.java 95 attrNS = attrNode.getNamespaceURI();
namespaceURI01.java 34 * The "getNamespaceURI()" method for an Attribute
39 * Invoke the "getNamespaceURI()" method on the attribute.
84 attrNamespaceURI = addrAttr.getNamespaceURI();
namespaceURI02.java 34 * The "getNamespaceURI()" method for an Attribute
38 * Invoke the "getNamespaceURI()" method on the attribute.
82 attrNamespaceURI = addrAttr.getNamespaceURI();
namespaceURI03.java 34 * The "getNamespaceURI()" method for a Node
37 * Retrieve the first employee node and invoke the "getNamespaceURI()"
79 employeeNamespace = testEmployee.getNamespaceURI();
removeAttributeNS02.java 95 namespaceURI = addrAttr.getNamespaceURI();
setAttributeNS04.java 94 resultNamespaceURI = addrAttr.getNamespaceURI();
setAttributeNS09.java 89 resultNamespaceURI = addrAttr.getNamespaceURI();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeGetNamespaceURI.java 33 * The method getNamespaceURI returns the namespace URI of this node, or null if it is unspecified
38 * Retreive their namespaceURI's using getNamespaceURI and verrify if it is correct.
88 elemNSURI = elementNS.getNamespaceURI();
89 elemNSURINull = element.getNamespaceURI();
90 attrNSURI = attrNS.getNamespaceURI();
91 attrNSURINull = attr.getNamespaceURI();
NamespaceURI.java 33 * The "getNamespaceURI()" method for an Attribute returns the namespace URI of
37 * "emp:district" that is specified in the DTD. Invoke the "getNamespaceURI()"
88 // attrNamespaceURI = addrAttr.getNamespaceURI();
103 attrNamespaceURI = addrAttr.getNamespaceURI();
115 employeeNamespace = testEmployee.getNamespaceURI();
126 employeeNamespace = testEmployee.getNamespaceURI();
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
DOM2Helper.java 114 return n.getNamespaceURI();
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPSchemaRegistry.java 99 String getNamespaceURI(String namespacePrefix);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncNamespace.java 56 s = dtm.getNamespaceURI(context);
68 s = dtm.getNamespaceURI(context);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 70 public String getNamespaceURI() {return "http://www.w3.org/2000/xmlns/";}
260 if (getNamespaceURI() == null) {
261 if (arg.getNamespaceURI() != null) {
265 else if (!getNamespaceURI().equals(arg.getNamespaceURI())) {
314 String namespace = this.getNamespaceURI();
333 namespace = attr.getNamespaceURI();
406 String namespace = this.getNamespaceURI();
488 String namespace = this.getNamespaceURI(); // to flip out children
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/
open_element_stack.js 111 return this.treeAdapter.getNamespaceURI(this.current) === NS.HTML;
171 ns = this.treeAdapter.getNamespaceURI(this.current);
267 var ns = this.treeAdapter.getNamespaceURI(this.items[i]);
283 if (isScopingElement(tn, this.treeAdapter.getNamespaceURI(this.items[i])))
297 var ns = this.treeAdapter.getNamespaceURI(this.items[i]);
313 var ns = this.treeAdapter.getNamespaceURI(this.items[i]);
329 var ns = this.treeAdapter.getNamespaceURI(this.items[i]);
345 var ns = this.treeAdapter.getNamespaceURI(this.items[i]);
361 var ns = this.treeAdapter.getNamespaceURI(this.items[i]);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
PrefixResolverDefault.java 98 return parent.getNamespaceURI();
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPPrefixResolver.java 47 return namespaceContext.getNamespaceURI( prefix );
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
AttrImpl.java 70 public String getNamespaceURI() {

Completed in 669 milliseconds

1 2 3 4 5 6 7 8 91011