HomeSort by relevance Sort by last modified time
    Searched full:namespaceuri (Results 101 - 125 of 357) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTMdefaultNamespaceDeclarationNode.java 200 * <code>namespaceURI</code>, <code>prefix</code>, <code>nodeValue</code>
305 * @param namespaceURI
393 * This method checks if the specified <code>namespaceURI</code> is the
395 * @param namespaceURI The namespace URI to look for.
396 * @return <code>true</code> if the specified <code>namespaceURI</code>
400 public boolean isDefaultNamespace(String namespaceURI){
411 if (namespaceURI == null) {
412 return (namespace == namespaceURI);
414 return namespaceURI.equals(namespace);
421 if (namespaceURI == null)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetElementsByTagNameNS.java 35 * The "getElementsByTagNameNS(namespaceURI,localName)" method for a Document
39 * Invoke method getElementsByTagNameNS(namespaceURI,localName) on this document
40 * with namespaceURI and localName as " ". Method should return a new NodeList
70 String namespaceURI = "*";
75 newList = doc.getElementsByTagNameNS(namespaceURI, localName);
151 String namespaceURI = "http://www.nist.gov";
156 elementList = doc.getElementsByTagNameNS(namespaceURI, localName);
RemoveAttributeNS.java 34 * The "removeAttributeNS(namespaceURI,localName)" method for an attribute
40 * executing the "removeAttributeNS(namespaceURI,localName)" method. This causes
122 // String namespaceURI;
136 // namespaceURI = addrAttr.getNamespaceURI();
140 // assertEquals("uri", "http://www.nist.gov", namespaceURI);
ElementGetAttributeNodeNS.java 14 * and namespaceURI.
64 element = doc.createElementNS("namespaceURI", "root");
94 element = doc.createElementNS("namespaceURI", "root");
  /external/apache-xml/src/main/java/org/apache/xml/utils/
UnImplNode.java 420 * @param namespaceURI Namespace URI of the element
425 public NodeList getElementsByTagNameNS(String namespaceURI,
454 * @param namespaceURI Namespace URI of attribute node to get
459 public Attr getAttributeNodeNS(String namespaceURI, String localName)
470 * @param namespaceURI Namespace URI of attribute node to remove
475 public void removeAttributeNS(String namespaceURI, String localName)
484 * @param namespaceURI Namespace URI of attribute node to set
491 String namespaceURI, String qualifiedName, String value)
500 * @param namespaceURI Namespace URI of attribute node to get
505 public String getAttributeNS(String namespaceURI, String localName
    [all...]
QName.java 88 * @param namespaceURI The namespace URI if known, or null
91 public QName(String namespaceURI, String localName)
93 this(namespaceURI, localName, false);
100 * @param namespaceURI The namespace URI if known, or null
105 public QName(String namespaceURI, String localName, boolean validate)
123 _namespaceURI = namespaceURI;
132 * @param namespaceURI The namespace URI if known, or null
137 public QName(String namespaceURI, String prefix, String localName)
139 this(namespaceURI, prefix, localName, false);
146 * @param namespaceURI The namespace URI if known, or nul
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 460 * @param namespaceURI
465 public boolean hasAttributeNS(String namespaceURI, String localName)
467 return DTM.NULL != dtm.getAttributeNode(node,namespaceURI,localName);
828 * @param namespaceURI
837 String namespaceURI, String qualifiedName) throws DOMException
844 * @param namespaceURI
853 String namespaceURI, String qualifiedName) throws DOMException
860 * @param namespaceURI
866 public final NodeList getElementsByTagNameNS(String namespaceURI,
873 boolean isNamespaceURIWildCard = "*".equals(namespaceURI);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MarkupAccumulator.cpp 280 void MarkupAccumulator::appendNamespace(StringBuilder& result, const AtomicString& prefix, const AtomicString& namespaceURI, Namespaces& namespaces)
282 if (namespaceURI.isEmpty())
288 if (foundNS != namespaceURI.impl()) {
289 namespaces.set(pre, namespaceURI.impl());
299 appendAttributeValue(result, namespaceURI, false);
418 appendNamespace(result, element->prefix(), element->namespaceURI(), *namespaces);
433 return attribute.namespaceURI() == XMLNames::xmlNamespaceURI
434 || attribute.namespaceURI() == XLinkNames::xlinkNamespaceURI
435 || attribute.namespaceURI() == XMLNSNames::xmlnsNamespaceURI;
448 if (attribute.namespaceURI() == XLinkNames::xlinkNamespaceURI)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.h 164 const AtomicString& namespaceURI = tagQName.namespaceURI();
165 return namespaceURI == starAtom || namespaceURI == element.namespaceURI();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
removeAttributeNS02.java 34 * The "removeAttributeNS(namespaceURI,localName)" removes an attribute by
41 * attribute by invoking the "removeAttributeNS(namespaceURI,localName)" method.
84 String namespaceURI;
95 namespaceURI = addrAttr.getNamespaceURI();
99 assertEquals("uri", "http://www.nist.gov", namespaceURI);
documentcreateattributeNS01.java 37 * namespaceURI, and a qualifiedName without a prefix. This should return a valid Attr
68 String namespaceURI = null;
75 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);
documentcreateattributeNS03.java 51 * namespaceURI, and qualifiedNames that contain illegal characters. Check if the an
82 String namespaceURI = "http://www.w3.org/DOM/Test/Level2";
102 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);
documentcreateattributeNS04.java 51 * namespaceURI, and malformed qualifiedNames. Check if the a NAMESPACE_ERR was thrown.
81 String namespaceURI = "http://www.w3.org/DOM/Test/Level2";
98 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);
domimplementationcreatedocument07.java 50 * for namespaceURI and docType and a malformed qualifiedName.
81 String namespaceURI = "http://www.w3.org/DOMTest/level2";
90 newDoc = domImpl.createDocument(namespaceURI, ":", docType);
getNamedItemNS01.java 34 * The "getNamedItemNS(namespaceURI,localName)" method for a
35 * NamedNodeMap should return a node specified by localName and namespaceURI
41 * method getNamedItemNS(namespaceURI,localName).
namednodemapremovenameditemns06.java 34 * The method removeNamedItemNS removes a node using its namespaceURI and localName and
35 * raises a NOT_FOUND_ERR if there is no node with the specified namespaceURI and
39 * an incorrect namespaceURI. This should raise a NOT_FOUND_ERR.
removeNamedItemNS01.java 34 * The "removeNamedItemNS(namespaceURI,localName)" method for a
35 * NamedNodeMap should remove a node specified by localName and namespaceURI.
41 * method removeNamedItemNS(namespaceURI,localName).
setAttributeNS01.java 34 * The "setAttributeNS(namespaceURI,qualifiedName,Value)" method raises a
69 String namespaceURI = "http://www.nist.gov";
81 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNS02.java 34 * The "setAttributeNS(namespaceURI,qualifiedName,value)" method raises a
68 String namespaceURI = "http://www.nist.gov";
81 ((Element) /*Node */testAddr).setAttributeNS(namespaceURI, qualifiedName, "newValue");
setAttributeNodeNS04.java 35 * If an attribute with that local name and that namespaceURI is already
40 * and namespaceURI already exists, it is replaced by the new one and
42 * This test uses the "createAttributeNS(namespaceURI,localName)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.idl 66 [TreatReturnedNullStringAs=Null, PerWorldBindings, MeasureAs=NodeNamespaceURI] readonly attribute DOMString namespaceURI; // Moved to Element and Attr in DOM4.
77 [TreatReturnedNullStringAs=Null] DOMString lookupPrefix([TreatNullAs=NullString] DOMString namespaceURI);
78 boolean isDefaultNamespace([TreatNullAs=NullString] DOMString namespaceURI);
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementDescriptor.h 45 CustomElementDescriptor(const AtomicString& type, const AtomicString& namespaceURI, const AtomicString& localName)
47 , m_namespaceURI(namespaceURI)
56 const AtomicString& namespaceURI() const { return m_namespaceURI; }
CustomElementRegistry.cpp 83 ASSERT(tagName.namespaceURI() == HTMLNames::xhtmlNamespaceURI || tagName.namespaceURI() == SVGNames::svgNamespaceURI);
102 const CustomElementDescriptor descriptor(type, tagName.namespaceURI(), tagName.localName());
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathStep.h 62 NodeTest(Kind kind, const AtomicString& data, const AtomicString& namespaceURI) : m_kind(kind), m_data(data), m_namespaceURI(namespaceURI) { }
82 const AtomicString& namespaceURI() const { return m_namespaceURI; }
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementation.java 71 * @param namespaceURI The namespace URI of the document element to
80 * If the <code>NamespaceURI</code>, <code>qualifiedName</code>, and
88 * <code>namespaceURI</code> is <code>null</code>, or if the
90 * <code>namespaceURI</code> is different from <code>null</code>, or
92 * the <code>namespaceURI</code> is different from "<a href='http://www.w3.org/XML/1998/namespace'>
105 public Document createDocument(String namespaceURI,

Completed in 658 milliseconds

1 2 3 45 6 7 8 91011>>