/external/chromium_org/third_party/WebKit/Source/core/xml/ |
xmlnsattrs.in | 2 namespaceURI="http://www.w3.org/2000/xmlns/"
|
xmlattrs.in | 3 namespaceURI="http://www.w3.org/XML/1998/namespace"
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
createDocument05.java | 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a 38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on 39 * this domimplementation with namespaceURI equals "http://www.ecommerce.org/schema", 69 String namespaceURI = "http://www.ecommerce.org/schema"; 78 illegalQNames.add("namespaceURI:{"); 79 illegalQNames.add("namespaceURI:}"); 80 illegalQNames.add("namespaceURI:~"); 81 illegalQNames.add("namespaceURI:'"); 82 illegalQNames.add("namespaceURI:!"); 83 illegalQNames.add("namespaceURI:@") [all...] |
getElementsByTagNameNS01.java | 34 * The "getElementsByTagNameNS(namespaceURI,localName)" method for a 38 * Invoke method getElementsByTagNameNS(namespaceURI,localName) on this document 39 * with namespaceURI and localName as " ". 67 String namespaceURI = "*"; 72 newList = doc.getElementsByTagNameNS(namespaceURI, localName);
|
setNamedItemNS03.java | 35 * NamedNodeMap should add a node using its namespaceURI and localName given that 36 * there is no existing node with the same namespaceURI and localName in the map. 38 * Create an attr node with namespaceURI "http://www.nist.gov",qualifiedName 41 * element where arg is identified by the namespaceURI and qualifiedName 69 String namespaceURI = "http://www.nist.gov"; 80 arg = doc.createAttributeNS(namespaceURI, qualifiedName); 86 retnode = attributes.getNamedItemNS(namespaceURI, "newAttr");
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
CreateDocument.java | 35 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a 40 * createDocument(namespaceURI,qualifiedName,doctype) on the retrieved 41 * DOMImplementation with namespaceURI being the literal string 84 String namespaceURI = "http://www.ecommerce.org/"; 96 domImpl.createDocument(namespaceURI, malformedName, docType); 104 String namespaceURI = null; 117 domImpl.createDocument(namespaceURI, qualifiedName, docType); 126 // String namespaceURI = "http://www.ecommerce.org/schema"; 127 // String qualifiedName = "namespaceURI:x"; 138 // domImpl.createDocument(namespaceURI, qualifiedName, docType) [all...] |
DocumentCreateElementNS.java | 13 * qualifiedName and NamespaceURI. 16 * namespaceURI and qualifiedName. Check if a valid Element object is returned 58 String namespaceURI = "http://www.w3.org/DOM/Test/level2"; 66 element = doc.createElementNS(namespaceURI, qualifiedName); 82 String namespaceURI = null; 90 doc.createElementNS(namespaceURI, qualifiedName); 100 String namespaceURI = null; 108 doc.createElementNS(namespaceURI, qualifiedName); 122 String namespaceURI = "http://www.w3.org/xml/1998/namespace "; 132 newDoc.createElementNS(namespaceURI, qualifiedName) [all...] |
HasAttributeNS.java | 75 String namespaceURI = "http://www.usa.com"; 83 state = testNode.hasAttributeNS(namespaceURI, localName); 88 String namespaceURI = "http://www.nomatch.com"; 96 state = testNode.hasAttributeNS(namespaceURI, localName); 101 String namespaceURI = "http://www.nist.gov"; 110 state = testNode.hasAttributeNS(namespaceURI, localName); 117 // String namespaceURI = "http://www.nist.gov"; 126 // state = testNode.hasAttributeNS(namespaceURI, localName); 131 String namespaceURI = "http://www.usa.com"; 139 state = testNode.hasAttributeNS(namespaceURI, localName) [all...] |
SetAttributeNS.java | 34 * The "setAttributeNS(namespaceURI,qualifiedName,Value)" method raises a 80 String namespaceURI = "http://www.nist.gov"; 92 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, 101 String namespaceURI = "http://www.nist.gov"; 114 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, 125 // String namespaceURI = "www.xyz.com"; 153 // genElement.setAttributeNS(namespaceURI, qualifiedName, 191 String namespaceURI = "http://www.newattr.com"; 202 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI, 205 namespaceURI, localName) [all...] |
CreateElementNS.java | 34 * The "createElementNS(namespaceURI,qualifiedName)" method for a Document 37 * Invoke method createElementNS(namespaceURI,qualifiedName) on the XMLNS 38 * Document with namespaceURI being the literal string 81 String namespaceURI = "http://www.ecommerce.org/"; 90 doc.createElementNS(namespaceURI, malformedName); 98 String namespaceURI = null; 108 doc.createElementNS(namespaceURI, qualifiedName); 116 String namespaceURI = "http://www.wedding.com/"; 156 doc.createElementNS(namespaceURI, qualifiedName); 165 String namespaceURI = "http://www.w3.org/XML/1998/namespaces" [all...] |
GetAttributeNS.java | 32 * The "getAttributeNS(namespaceURI,localName)" method retrieves an attribute 33 * value by local name and NamespaceURI. 77 // String namespaceURI = "http://www.nist.gov"; 87 // attrValue = testAddr.getAttributeNS(namespaceURI, localName); 91 String namespaceURI = "http://www.nist.gov"; 101 newAttribute = doc.createAttributeNS(namespaceURI, qualifiedName); 108 attrValue = testAddr.getAttributeNS(namespaceURI, localName); 112 String namespaceURI = "http://www.nist.gov"; 122 testAddr.removeAttributeNS(namespaceURI, localName); 123 attrValue = testAddr.getAttributeNS(namespaceURI, localName) [all...] |
DocumentCreateAttributeNS.java | 40 * namespaceURI, and a qualifiedName without a prefix. This should return a 82 String namespaceURI = null; 89 attribute = doc.createAttributeNS(namespaceURI, qualifiedName); 109 String namespaceURI; 117 namespaceURI = attribute1.getNamespaceURI(); 125 "http://www.w3.org/XML/1998/namespace", namespaceURI); 132 namespaceURI = attribute2.getNamespaceURI(); 139 "http://www.w3.org/2000/xmlns/", namespaceURI); 144 String namespaceURI = "http://www.w3.org/DOM/Test/Level2"; 164 doc.createAttributeNS(namespaceURI, qualifiedName) [all...] |
DOMImplementationCreateDocument.java | 61 String namespaceURI = "http://www.w3.org/DOMTest/L2"; 79 newDoc = domImpl.createDocument(namespaceURI, qualifiedName, 88 String namespaceURI = null; 99 domImpl.createDocument(namespaceURI, qualifiedName, docType); 110 String namespaceURI = "http://www.w3.org/xml/1998/namespace"; 120 domImpl.createDocument(namespaceURI, qualifiedName, docType); 131 String namespaceURI = "http://www.w3.org/DOMTest/level2"; 140 domImpl.createDocument(namespaceURI, ":", docType);
|
CreateAttributeNS.java | 63 String namespaceURI = "http://www.ecommerce.org/"; 72 doc.createAttributeNS(namespaceURI, malformedName); 80 String namespaceURI = null; 90 doc.createAttributeNS(namespaceURI, qualifiedName); 98 String namespaceURI = "http://www.wedding.com/"; 137 doc.createAttributeNS(namespaceURI, qualifiedName); 146 String namespaceURI = "http://www.w3.org/XML/1998/namespaces"; 155 doc.createAttributeNS(namespaceURI, qualifiedName); 163 String namespaceURI = "http://www.ecommerce.org/"; 169 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
MathMLTagNames.in | 2 namespaceURI="http://www.w3.org/1998/Math/MathML"
|
MathMLAttributeNames.in | 2 namespaceURI="http://www.w3.org/1998/Math/MathML"
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
xlinkattrs.in | 2 namespaceURI="http://www.w3.org/1999/xlink"
|
/external/smack/asmack-master/static-src/custom/com/kenai/jbosh/ |
QName.java | 66 * The value of a QName contains a <b>namespaceURI</b>, a <b>localPart</b> and a <b>prefix</b>. 68 * namespaceURI is a URI reference identifying the namespace. 77 /** Field namespaceURI */ 78 private String namespaceURI; 98 * @param namespaceURI Namespace URI for the QName 101 public QName(String namespaceURI, String localPart) { 102 this(namespaceURI, localPart, emptyString); 108 * @param namespaceURI Namespace URI for the QName 112 public QName(String namespaceURI, String localPart, String prefix) { 113 this.namespaceURI = (namespaceURI == null [all...] |
/external/smack/src/com/kenai/jbosh/ |
QName.java | 66 * The value of a QName contains a <b>namespaceURI</b>, a <b>localPart</b> and a <b>prefix</b>. 68 * namespaceURI is a URI reference identifying the namespace. 77 /** Field namespaceURI */ 78 private String namespaceURI; 98 * @param namespaceURI Namespace URI for the QName 101 public QName(String namespaceURI, String localPart) { 102 this(namespaceURI, localPart, emptyString); 108 * @param namespaceURI Namespace URI for the QName 112 public QName(String namespaceURI, String localPart, String prefix) { 113 this.namespaceURI = (namespaceURI == null [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
ElementImpl.java | 43 String namespaceURI; 49 ElementImpl(DocumentImpl document, String namespaceURI, String qualifiedName) { 51 setNameNS(this, namespaceURI, qualifiedName); 70 private int indexOfAttributeNS(String namespaceURI, String localName) { 73 if (Objects.equal(namespaceURI, attr.getNamespaceURI()) 92 public String getAttributeNS(String namespaceURI, String localName) { 93 Attr attr = getAttributeNodeNS(namespaceURI, localName); 112 public AttrImpl getAttributeNodeNS(String namespaceURI, String localName) { 113 int i = indexOfAttributeNS(namespaceURI, localName); 167 public NodeList getElementsByTagNameNS(String namespaceURI, String localName) [all...] |
AttrImpl.java | 42 String namespaceURI; 48 AttrImpl(DocumentImpl document, String namespaceURI, String qualifiedName) { 50 setNameNS(this, namespaceURI, qualifiedName); 71 return namespaceURI; 107 this.prefix = validatePrefix(prefix, namespaceAware, namespaceURI);
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8XSLTProcessorCustom.cpp | 51 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, namespaceURI, info[0]); 56 imp->setParameter(namespaceURI, localName, value); 64 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, namespaceURI, info[0]); 68 String result = imp->getParameter(namespaceURI, localName); 80 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, namespaceURI, info[0]); 84 imp->removeParameter(namespaceURI, localName);
|
/libcore/luni/src/main/java/org/w3c/dom/ |
NameList.java | 35 * Returns the <code>index</code>th namespaceURI item in the collection. 44 * The number of pairs (name and namespaceURI) in the list. The range of 58 * Test if the pair namespaceURI/name is part of this 60 * @param namespaceURI The namespace URI to look for. 62 * @return <code>true</code> if the pair namespaceURI/name has been 65 public boolean containsNS(String namespaceURI,
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
QualifiedName.h | 43 static PassRefPtr<QualifiedNameImpl> create(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) 45 return adoptRef(new QualifiedNameImpl(prefix, localName, namespaceURI)); 59 QualifiedNameImpl(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI) 63 , m_namespace(namespaceURI) 65 ASSERT(!namespaceURI.isEmpty() || namespaceURI.isNull()); 69 QualifiedName(const AtomicString& prefix, const AtomicString& localName, const AtomicString& namespaceURI); 83 bool matches(const QualifiedName& other) const { return m_impl == other.m_impl || (localName() == other.localName() && namespaceURI() == other.namespaceURI()); } 85 bool matchesPossiblyIgnoringCase(const QualifiedName& other, bool shouldIgnoreCase) const { return m_impl == other.m_impl || (equalPossiblyIgnoringCase(localName(), other.localName(), shouldIgnoreCase) && namespaceURI() == other.namespaceURI()); [all...] |
/packages/apps/Mms/src/com/android/mms/dom/ |
ElementImpl.java | 53 public String getAttributeNS(String namespaceURI, String localName) { 62 public Attr getAttributeNodeNS(String namespaceURI, String localName) { 71 public NodeList getElementsByTagNameNS(String namespaceURI, String localName) { 84 public boolean hasAttributeNS(String namespaceURI, String localName) { 94 public void removeAttributeNS(String namespaceURI, String localName) 114 public void setAttributeNS(String namespaceURI, String qualifiedName, 163 public void setIdAttributeNS(String namespaceURI, String localName,
|