Searched refs:getNamespaceURI (Results 1 - 25 of 70) sorted by relevance

123

/dalvik/libcore/xml/src/main/java/javax/xml/namespace/
H A DNamespaceContext.java85 * <code>getNamespaceURI(prefix)</code>
129 String getNamespaceURI(String prefix); method in interface:NamespaceContext
/dalvik/libcore/xml/src/main/java/org/w3c/dom/
H A DNameList.java41 public String getNamespaceURI(int index); method in interface:NameList
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A Dnodegetnamespaceuri03.java34 * 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();
H A DdocumentcreateattributeNS02.java79 namespaceURI = attribute1.getNamespaceURI();
90 namespaceURI = attribute2.getNamespaceURI();
H A DnamespaceURI04.java34 * The "getNamespaceURI()" method for a Node
37 * Retrieve the second employee node and invoke the "getNamespaceURI()"
72 employeeNamespace = testEmployee.getNamespaceURI();
H A Dprefix11.java76 namespaceURI = employeeNode.getNamespaceURI();
H A DdocumentcreateelementNS01.java90 nsURI = element.getNamespaceURI();
H A Ddocumentimportnode05.java92 namespaceURI = importedAttr.getNamespaceURI();
H A Delementsetattributenodens01.java95 attrNS = attrNode.getNamespaceURI();
H A DnamespaceURI01.java34 * The "getNamespaceURI()" method for an Attribute
39 * Invoke the "getNamespaceURI()" method on the attribute.
84 attrNamespaceURI = addrAttr.getNamespaceURI();
H A DnamespaceURI02.java34 * The "getNamespaceURI()" method for an Attribute
38 * Invoke the "getNamespaceURI()" method on the attribute.
82 attrNamespaceURI = addrAttr.getNamespaceURI();
H A DnamespaceURI03.java34 * The "getNamespaceURI()" method for a Node
37 * Retrieve the first employee node and invoke the "getNamespaceURI()"
79 employeeNamespace = testEmployee.getNamespaceURI();
H A DremoveAttributeNS02.java95 namespaceURI = addrAttr.getNamespaceURI();
H A DsetAttributeNS04.java94 resultNamespaceURI = addrAttr.getNamespaceURI();
H A DsetAttributeNS09.java89 resultNamespaceURI = addrAttr.getNamespaceURI();
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
H A DNodeGetNamespaceURI.java38 * The method getNamespaceURI returns the namespace URI of this node, or null if it is unspecified
43 * Retreive their namespaceURI's using getNamespaceURI and verrify if it is correct.
80 method = "getNamespaceURI",
100 elemNSURI = elementNS.getNamespaceURI();
101 elemNSURINull = element.getNamespaceURI();
102 attrNSURI = attrNS.getNamespaceURI();
103 attrNSURINull = attr.getNamespaceURI();
H A DNamespaceURI.java38 * The "getNamespaceURI()" method for an Attribute returns the namespace URI of
42 * "emp:district" that is specified in the DTD. Invoke the "getNamespaceURI()"
94 // attrNamespaceURI = addrAttr.getNamespaceURI();
99 notes = "Doesn't verify that getNamespaceURI method returns null.",
100 method = "getNamespaceURI",
115 attrNamespaceURI = addrAttr.getNamespaceURI();
120 notes = "Doesn't verify that getNamespaceURI method returns null.",
121 method = "getNamespaceURI",
133 employeeNamespace = testEmployee.getNamespaceURI();
138 notes = "Verifies that getNamespaceURI metho
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/
H A DDOM2Helper.java114 return n.getNamespaceURI();
/dalvik/libcore/xml/src/main/java/org/apache/xpath/functions/
H A DFuncNamespace.java56 s = dtm.getNamespaceURI(context);
68 s = dtm.getNamespaceURI(context);
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTMdefaultNamespaceDeclarationNode.java70 public String getNamespaceURI() {return "http://www.w3.org/2000/xmlns/";} method in class:DOM2DTMdefaultNamespaceDeclarationNode
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
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DPrefixResolverDefault.java98 return parent.getNamespaceURI();
H A DQName.java489 public String getNamespaceURI() method in class:QName
553 return getNamespaceURI();
589 String thisnamespace = getNamespaceURI();
612 String thisnamespace = getNamespaceURI();
613 String thatnamespace = qname.getNamespaceURI();
/dalvik/libcore/xml/src/main/java/org/apache/xpath/jaxp/
H A DJAXPPrefixResolver.java47 return namespaceContext.getNamespaceURI( prefix );
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
H A DNodeImpl.java100 public String getNamespaceURI() { method in class:NodeImpl
313 return matchesName(namespaceURI, getNamespaceURI(), wildcard) && matchesName(localName, getLocalName(), wildcard);
508 if (namespaceURI.equals(node.getNamespaceURI())
521 if (!"http://www.w3.org/2000/xmlns/".equals(attr.getNamespaceURI())
569 if (node.getNamespaceURI() != null) {
573 return node.getNamespaceURI();
586 if (!"http://www.w3.org/2000/xmlns/".equals(attr.getNamespaceURI())) {
612 values.add(node.getNamespaceURI());
693 : b.getNamedItemNS(aNode.getNamespaceURI(), aNode.getLocalName());
/dalvik/libcore/xml/src/main/java/org/apache/xalan/serialize/
H A DSerializerUtils.java65 String ns = dtm.getNamespaceURI(attr);
139 && dtm.getNamespaceURI(n) == null)

Completed in 309 milliseconds

123