/external/webkit/Source/WebCore/xml/ |
XPathNamespace.cpp | 69 const AtomicString& XPathNamespace::namespaceURI() const
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8XSLTProcessorCustom.cpp | 114 String namespaceURI = toWebCoreString(args[0]); 117 imp->setParameter(namespaceURI, localName, value); 131 String namespaceURI = toWebCoreString(args[0]); 133 String result = imp->getParameter(namespaceURI, localName); 148 String namespaceURI = toWebCoreString(args[0]); 150 imp->removeParameter(namespaceURI, localName);
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
createAttributeNS01.java | 34 * The "createAttributeNS(namespaceURI,qualifiedName)" method for a 38 * Invoke method createAttributeNS(namespaceURI,qualifiedName) on 39 * the XMLNS Document with namespaceURI being "http://www.ecommerce.org/", 70 String namespaceURI = "http://www.ecommerce.org/"; 79 newAttr = doc.createAttributeNS(namespaceURI, malformedName);
|
createAttributeNS02.java | 34 * The "createAttributeNS(namespaceURI,qualifiedName)" method for a 36 * if qualifiedName has a prefix and namespaceURI is null. 38 * Invoke method createAttributeNS(namespaceURI,qualifiedName) on this document 39 * with namespaceURI being null and qualifiedName contains the prefix "person". 69 String namespaceURI = null; 79 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
|
createAttributeNS03.java | 34 * The "createAttributeNS(namespaceURI,qualifiedName)" method for a 38 * Invoke method createAttributeNS(namespaceURI,qualifiedName) on this document 69 String namespaceURI = "http://www.wedding.com/"; 109 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
|
createAttributeNS04.java | 34 * The "createAttributeNS(namespaceURI,qualifiedName)" method for a 36 * if qualifiedName has the "xml" prefix and namespaceURI is different 39 * Invoke method createAttributeNS(namespaceURI,qualifiedName) on this document 40 * with qualifiedName being "xml:attr1 and namespaceURI equals 72 String namespaceURI = "http://www.w3.org/XML/1998/namespaces"; 81 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
|
createAttributeNS05.java | 34 * The "createAttributeNS(namespaceURI,qualifiedName)" method for a 38 * Invoke method createAttributeNS(namespaceURI,qualifiedName) on this document with 67 String namespaceURI = "http://www.ecommerce.org/"; 73 newAttr = doc.createAttributeNS(namespaceURI, qualifiedName);
|
createAttributeNS06.java | 62 String namespaceURI = "http://www.example.com/"; 71 newAttr = doc.createAttributeNS(namespaceURI, "");
|
createDocument01.java | 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a 39 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) 40 * on the retrieved DOMImplementation with namespaceURI being 72 String namespaceURI = "http://www.ecommerce.org/"; 85 aNewDoc = domImpl.createDocument(namespaceURI, malformedName, docType);
|
createDocument02.java | 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a 36 * if qualifiedName has a prefix and namespaceURI is null. 38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on 39 * this domimplementation with namespaceURI being null and qualifiedName 69 String namespaceURI = null; 83 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
|
createDocument03.java | 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a 38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on 69 String namespaceURI = "http://www.ecommerce.org/schema"; 70 String qualifiedName = "namespaceURI:x"; 82 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
|
createDocument04.java | 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a 38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on 71 String namespaceURI = "http://www.ecommerce.org/schema"; 72 String qualifiedName = "namespaceURI:x"; 85 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
|
createDocument06.java | 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a 36 * if qualifiedName has the "xml" prefix and namespaceURI different from 39 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on 41 * and namespaceURI as the string 73 String namespaceURI = "http://ecommerce.org/schema"; 86 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
|
createDocument08.java | 59 String namespaceURI = "http://www.example.org/schema"; 70 aNewDoc = domImpl.createDocument(namespaceURI, "", docType);
|
createElementNS01.java | 34 * The "createElementNS(namespaceURI,qualifiedName)" method for a 38 * Invoke method createElementNS(namespaceURI,qualifiedName) on 39 * the XMLNS Document with namespaceURI being the literal string 70 String namespaceURI = "http://www.ecommerce.org/"; 79 newElement = doc.createElementNS(namespaceURI, malformedName);
|
createElementNS02.java | 34 * The "createElementNS(namespaceURI,qualifiedName)" method for a 36 * qualifiedName has a prefix and namespaceURI is null. 38 * Invoke method createElementNS(namespaceURI,qualifiedName) on this document 39 * with namespaceURI being null and qualifiedName being "elem:attr1". 69 String namespaceURI = null; 79 newElement = doc.createElementNS(namespaceURI, qualifiedName);
|
createElementNS03.java | 34 * The "createElementNS(namespaceURI,qualifiedName)" method for a 38 * Invoke method createElementNS(namespaceURI,qualifiedName) on this document 69 String namespaceURI = "http://www.wedding.com/"; 111 newElement = doc.createElementNS(namespaceURI, qualifiedName);
|
createElementNS04.java | 34 * The "createElementNS(namespaceURI,qualifiedName") method for 36 * qualifiedName has an "xml" prefix and the namespaceURI is different 39 * Invoke method createElementNS(namespaceURI,qualifiedName) on this document 40 * with qualifiedName being "xml:element1" and namespaceURI equals the string 72 String namespaceURI = "http://www.w3.org/XML/1998/namespaces"; 81 newElement = doc.createElementNS(namespaceURI, qualifiedName);
|
createElementNS05.java | 34 * The "createElementNS(namespaceURI,qualifiedName)" method for a 38 * Invoke method createElementNS(namespaceURI,qualifiedName on this document 39 * with namespaceURI as "http://www.nist.gov" and qualifiedName as "gov:faculty". 67 String namespaceURI = "http://www.nist.gov"; 73 newElement = doc.createElementNS(namespaceURI, qualifiedName);
|
createElementNS06.java | 62 String namespaceURI = "http://www.example.com/"; 73 newElement = doc.createElementNS(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);
|
documentcreateattributeNS07.java | 48 * the namespaceURI is different from http://www.w3.org/2000/xmlns 51 * the qualifiedName as xmlns and namespaceURI as http://www.W3.org/2000/xmlns. 82 String namespaceURI = "http://www.W3.org/2000/xmlns"; 89 attribute = doc.createAttributeNS(namespaceURI, qualifiedName);
|
documentcreateelementNS02.java | 47 * The method createElementNS creates an element of the given valid qualifiedName and NamespaceURI. 49 * Invoke the createElementNS method on this Document object with null values for namespaceURI, 80 String namespaceURI = null; 88 element = doc.createElementNS(namespaceURI, qualifiedName);
|