Searched defs:namespaceURI (Results 26 - 50 of 55) sorted by relevance

123

/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DIncrementalSAXSource_Filter.java242 public void endElement(java.lang.String namespaceURI, java.lang.String localName, argument
252 clientContentHandler.endElement(namespaceURI,localName,qName);
323 public void startElement(java.lang.String namespaceURI, java.lang.String localName, argument
333 clientContentHandler.startElement(namespaceURI, localName, qName, atts);
H A DDTMDefaultBase.java1042 * @param namespaceURI The namespace URI of the attribute to
1050 public abstract int getAttributeNode(int nodeHandle, String namespaceURI, argument
H A DDTMDocumentImpl.java434 public void endElement(java.lang.String namespaceURI, java.lang.String localName, argument
474 public void startElement(java.lang.String namespaceURI, java.lang.String localName, argument
488 appendStartElement(m_nsNames.stringToIndex(namespaceURI),
1078 * @param namespaceURI The namespace URI of the attribute to
1086 public int getAttributeNode(int nodeHandle, String namespaceURI, String name) { argument
1087 int nsIndex = m_nsNames.stringToIndex(namespaceURI),
2142 * @param namespaceIndex: Index within the namespaceURI string pool
2178 * @param namespaceIndex: Index within the namespaceURI string pool
2222 * @param namespaceIndex int Index within the namespaceURI string pool
H A DDTMNodeProxy.java460 * @param namespaceURI
465 public boolean hasAttributeNS(String namespaceURI, String localName) argument
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, argument
873 boolean isNamespaceURIWildCard = "*".equals(namespaceURI);
836 createElementNS( String namespaceURI, String qualifiedName) argument
852 createAttributeNS( String namespaceURI, String qualifiedName) argument
908 traverseChildren( Vector listVector, Node tempNode, String namespaceURI, String localname, boolean isNamespaceURIWildCard, boolean isLocalNameWildCard) argument
1192 getAttributeNS(String namespaceURI, String localName) argument
1210 setAttributeNS( String namespaceURI, String qualifiedName, String value) argument
1225 removeAttributeNS(String namespaceURI, String localName) argument
1239 getAttributeNodeNS(String namespaceURI, String localName) argument
1404 createDocument(String namespaceURI,String qualfiedName,DocumentType doctype) argument
1710 isDefaultNamespace(String namespaceURI) argument
1781 lookupPrefix(String namespaceURI) argument
1990 renameNode(Node n, String namespaceURI, String name) argument
2175 setIdAttributeNS(String namespaceURI, String localName, boolean makeId) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToHTMLStream.java777 * @param namespaceURI
787 String namespaceURI,
825 if (null != namespaceURI && namespaceURI.length() > 0)
827 super.startElement(namespaceURI, localName, name, atts);
887 elemContext = elemContext.push(namespaceURI,localName,name);
922 * @param namespaceURI
929 final String namespaceURI,
939 if (null != namespaceURI && namespaceURI
786 startElement( String namespaceURI, String localName, String name, Attributes atts) argument
928 endElement( final String namespaceURI, final String localName, final String name) argument
[all...]
H A DSerializerBase.java838 * @param namespaceURI the uri of the namespace in question
842 public String getPrefix(String namespaceURI) argument
844 String prefix = m_prefixMap.lookupPrefix(namespaceURI);
H A DToUnknownStream.java451 public void startElement(String namespaceURI, String localName, String qName) throws SAXException argument
453 this.startElement(namespaceURI, localName, qName, null);
457 String namespaceURI,
473 m_handler.startElement(namespaceURI, localName, elementName, atts);
489 m_firstElementURI = namespaceURI;
519 m_handler.startElement(namespaceURI, localName, elementName, atts);
809 public void endElement(String namespaceURI, String localName, String qName) argument
815 if (namespaceURI == null && m_firstElementURI != null)
816 namespaceURI = m_firstElementURI;
823 m_handler.endElement(namespaceURI, localNam
456 startElement( String namespaceURI, String localName, String elementName, Attributes atts) argument
1229 getPrefix(String namespaceURI) argument
[all...]
H A DToStream.java1879 * @param namespaceURI The Namespace URI, or the empty string if the
1896 String namespaceURI,
1931 if (namespaceURI != null)
1932 ensurePrefixIsDeclared(namespaceURI, name);
1956 m_elemContext = m_elemContext.push(namespaceURI,localName,name);
2192 * @param namespaceURI The Namespace URI, or the empty string if the
2204 public void endElement(String namespaceURI, String localName, String name) argument
1895 startElement( String namespaceURI, String localName, String name, Attributes atts) argument
/external/webkit/Source/WebCore/dom/
H A DXMLDocumentParserQt.cpp172 m_defaultNamespaceURI = parentElement->namespaceURI();
346 String namespaceURI = decl.namespaceUri(); local
349 newElement->setAttributeNS("http://www.w3.org/2000/xmlns/", namespaceQName, namespaceURI, ec, scriptingPermission);
H A DElement.cpp258 return hasAttributeNS(name.namespaceURI(), name.localName());
648 const AtomicString& Element::getAttributeNS(const String& namespaceURI, const String& localName) const argument
650 return getAttribute(QualifiedName(nullAtom, localName, namespaceURI));
795 return name.namespaceURI().isNull() && name.localName().startsWith("on");
1475 void Element::setAttributeNS(const AtomicString& namespaceURI, const AtomicString& qualifiedName, const AtomicString& value, ExceptionCode& ec, FragmentScriptingPermission scriptingPermission) argument
1481 if (namespaceURI.isNull() && !prefix.isNull()) {
1486 QualifiedName qName(prefix, localName, namespaceURI);
1509 void Element::removeAttributeNS(const String& namespaceURI, const String& localName, ExceptionCode& ec) argument
1511 removeAttribute(QualifiedName(nullAtom, localName, namespaceURI), ec);
1523 PassRefPtr<Attr> Element::getAttributeNodeNS(const String& namespaceURI, cons argument
1543 hasAttributeNS(const String& namespaceURI, const String& localName) const argument
[all...]
H A DNode.h170 const AtomicString& namespaceURI() const { return virtualNamespaceURI(); } function in class:WebCore::Node
177 bool isDefaultNamespace(const AtomicString& namespaceURI) const;
178 String lookupPrefix(const AtomicString& namespaceURI) const;
180 String lookupNamespacePrefix(const AtomicString& namespaceURI, const Element* originalElement) const;
522 PassRefPtr<NodeList> getElementsByTagNameNS(const AtomicString& namespaceURI, const AtomicString& localName);
H A DXMLDocumentParserLibxml2.cpp627 m_defaultNamespaceURI = parentElement->namespaceURI();
711 AtomicString namespaceURI = toAtomicString(namespaces[i].uri); local
714 newElement->setAttributeNS(XMLNSNames::xmlnsNamespaceURI, namespaceQName, namespaceURI, ec, scriptingPermission);
H A DNode.cpp1213 const AtomicString& nodeNamespaceURI = namespaceURI();
1703 PassRefPtr<NodeList> Node::getElementsByTagNameNS(const AtomicString& namespaceURI, const AtomicString& localName) argument
1720 pair<NodeListsNodeData::TagNodeListCache::iterator, bool> result = data->nodeLists()->m_tagNodeListCache.add(QualifiedName(nullAtom, localNameAtom, namespaceURI).impl(), 0);
1724 RefPtr<TagNodeList> list = TagNodeList::create(this, namespaceURI.isEmpty() ? nullAtom : namespaceURI, localNameAtom);
1862 if (namespaceURI() != other->namespaceURI())
1927 const AtomicString& namespaceURI = namespaceURIMaybeEmpty.isEmpty() ? nullAtom : namespaceURIMaybeEmpty; local
1934 return elem->namespaceURI() == namespaceURI;
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemLiteralResult.java185 * @param namespaceURI Namespace URI of attribute node to get
190 public AVT getLiteralResultAttributeNS(String namespaceURI, String localName) argument
202 avt.getURI().equals(namespaceURI))
215 * @param namespaceURI Namespace URI of attribute node to get
221 public String getAttributeNS(String namespaceURI, String localName) argument
224 AVT avt = getLiteralResultAttributeNS(namespaceURI, localName);
235 * Get a literal result attribute by name. The name is namespaceURI:localname
269 * @param namespaceURI:localName or localName if the namespaceURI is null of
616 * @param namespaceURI Namespac
623 getNamedItemNS(String namespaceURI, String localName) argument
689 removeNamedItemNS(String namespaceURI, String localName) argument
1113 isDefaultNamespace(String namespaceURI) argument
1117 lookupPrefix(String namespaceURI) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java264 * @param namespaceURI The namespace URI of the attribute to
272 public int getAttributeNode(int elementHandle, String namespaceURI, argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java1177 * @param namespaceURI The namespace URI of the attribute to
1185 public int getAttributeNode(int nodeHandle, String namespaceURI, argument
1194 boolean nsMatch = namespaceURI == attrNS
1195 || (namespaceURI != null
1196 && namespaceURI.equals(attrNS));
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DUnImplNode.java420 * @param namespaceURI Namespace URI of the element
425 public NodeList getElementsByTagNameNS(String namespaceURI, argument
454 * @param namespaceURI Namespace URI of attribute node to get
459 public Attr getAttributeNodeNS(String namespaceURI, String localName) argument
470 * @param namespaceURI Namespace URI of attribute node to remove
475 public void removeAttributeNS(String namespaceURI, String localName) argument
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, Strin argument
490 setAttributeNS( String namespaceURI, String qualifiedName, String value) argument
970 createElementNS(String namespaceURI, String qualifiedName) argument
989 createAttributeNS(String namespaceURI, String qualifiedName) argument
1465 isDefaultNamespace(String namespaceURI) argument
1539 lookupPrefix(String namespaceURI) argument
1748 renameNode(Node n, String namespaceURI, String name) argument
1934 setIdAttributeNS(String namespaceURI, String localName, boolean makeId) argument
[all...]
/external/webkit/Source/WebCore/svg/animation/
H A DSVGSMILElement.cpp163 String namespaceURI = svgElement->lookupNamespaceURI(prefix); local
164 if (namespaceURI.isEmpty())
167 return QualifiedName(nullAtom, localName, namespaceURI);
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.cpp316 HRESULT STDMETHODCALLTYPE DOMNode::namespaceURI( function in class:DOMNode
706 /* [in] */ BSTR /*namespaceURI*/,
715 /* [in] */ BSTR /*namespaceURI*/,
724 /* [in] */ BSTR namespaceURI,
731 String namespaceURIString(namespaceURI);
957 /* [in] */ BSTR /*namespaceURI*/,
966 /* [in] */ BSTR /*namespaceURI*/,
975 /* [in] */ BSTR /*namespaceURI*/,
983 /* [in] */ BSTR /*namespaceURI*/,
1000 /* [in] */ BSTR /*namespaceURI*/,
723 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList** result) argument
[all...]
H A DDOMHTMLClasses.h275 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLDocument
276 /* [retval][out] */ BSTR *result) { return DOMDocument::namespaceURI(result); }
356 /* [in] */ BSTR namespaceURI,
358 /* [retval][out] */ IDOMElement **result) { return DOMDocument::createElementNS(namespaceURI, qualifiedName, result); }
361 /* [in] */ BSTR namespaceURI,
363 /* [retval][out] */ IDOMAttr **result) { return DOMDocument::createAttributeNS(namespaceURI, qualifiedName, result); }
366 /* [in] */ BSTR namespaceURI,
368 /* [retval][out] */ IDOMNodeList **result) { return DOMDocument::getElementsByTagNameNS(namespaceURI, localName, result); }
549 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLElement
550 /* [retval][out] */ BSTR *result) { return DOMElement::namespaceURI(resul
355 createElementNS( BSTR namespaceURI, BSTR qualifiedName, IDOMElement **result) argument
360 createAttributeNS( BSTR namespaceURI, BSTR qualifiedName, IDOMAttr **result) argument
365 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
609 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
614 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
619 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
623 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
632 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
641 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
808 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLFormElement
868 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
873 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
878 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
882 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
891 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
900 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
1113 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLSelectElement
1173 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
1178 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
1183 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
1187 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
1196 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
1205 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
1437 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLOptionElement
1497 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
1502 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
1507 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
1511 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
1520 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
1529 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
1735 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLInputElement
1795 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
1800 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
1805 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
1809 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
1818 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
1827 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
2145 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLTextAreaElement
2205 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
2210 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
2215 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
2219 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
2228 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
2237 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
2470 virtual HRESULT STDMETHODCALLTYPE namespaceURI( function in class:DOMHTMLIFrameElement
2530 getAttributeNS( BSTR namespaceURI, BSTR localName, BSTR *result) argument
2535 setAttributeNS( BSTR namespaceURI, BSTR qualifiedName, BSTR value) argument
2540 removeAttributeNS( BSTR namespaceURI, BSTR localName) argument
2544 getAttributeNodeNS( BSTR namespaceURI, BSTR localName, IDOMAttr **result) argument
2553 getElementsByTagNameNS( BSTR namespaceURI, BSTR localName, IDOMNodeList **result) argument
2562 hasAttributeNS( BSTR namespaceURI, BSTR localName, BOOL *result) argument
[all...]
/external/libxml2/
H A Dxmlwriter.c1044 * @namespaceURI: namespace URI or NULL
1053 const xmlChar * namespaceURI)
1076 if (namespaceURI != 0) {
1092 p->uri = xmlStrdup(namespaceURI);
1819 * @namespaceURI: namespace URI or NULL
1828 const xmlChar * namespaceURI)
1839 if (namespaceURI != 0) {
1849 nsentry.uri = (xmlChar *)namespaceURI;
1856 if (xmlStrcmp(curns->uri, namespaceURI) == 0) {
1876 p->uri = xmlStrdup(namespaceURI);
1051 xmlTextWriterStartElementNS(xmlTextWriterPtr writer, const xmlChar * prefix, const xmlChar * name, const xmlChar * namespaceURI) argument
1826 xmlTextWriterStartAttributeNS(xmlTextWriterPtr writer, const xmlChar * prefix, const xmlChar * name, const xmlChar * namespaceURI) argument
2060 xmlTextWriterWriteFormatAttributeNS(xmlTextWriterPtr writer, const xmlChar * prefix, const xmlChar * name, const xmlChar * namespaceURI, const char *format, ...) argument
2092 xmlTextWriterWriteVFormatAttributeNS(xmlTextWriterPtr writer, const xmlChar * prefix, const xmlChar * name, const xmlChar * namespaceURI, const char *format, va_list argptr) argument
2128 xmlTextWriterWriteAttributeNS(xmlTextWriterPtr writer, const xmlChar * prefix, const xmlChar * name, const xmlChar * namespaceURI, const xmlChar * content) argument
2263 xmlTextWriterWriteFormatElementNS(xmlTextWriterPtr writer, const xmlChar * prefix, const xmlChar * name, const xmlChar * namespaceURI, const char *format, ...) argument
2295 xmlTextWriterWriteVFormatElementNS(xmlTextWriterPtr writer, const xmlChar * prefix, const xmlChar * name, const xmlChar * namespaceURI, const char *format, va_list argptr) argument
2331 xmlTextWriterWriteElementNS(xmlTextWriterPtr writer, const xmlChar * prefix, const xmlChar * name, const xmlChar * namespaceURI, const xmlChar * content) argument
4315 xmlChar *namespaceURI = NULL; local
[all...]
H A Dxmlreader.c2415 * @namespaceURI: the namespace URI of the attribute.
2424 const xmlChar *namespaceURI) {
2439 if (xmlStrEqual(namespaceURI, BAD_CAST "http://www.w3.org/2000/xmlns/")) {
2454 return(xmlGetNsProp(reader->node, localName, namespaceURI));
2692 * @namespaceURI: the namespace URI of the attribute.
2701 const xmlChar *localName, const xmlChar *namespaceURI) {
2707 if ((reader == NULL) || (localName == NULL) || (namespaceURI == NULL))
2715 if (xmlStrEqual(namespaceURI, BAD_CAST "http://www.w3.org/2000/xmlns/")) {
2740 (xmlStrEqual(prop->ns->href, namespaceURI)))) {
2423 xmlTextReaderGetAttributeNs(xmlTextReaderPtr reader, const xmlChar *localName, const xmlChar *namespaceURI) argument
2700 xmlTextReaderMoveToAttributeNs(xmlTextReaderPtr reader, const xmlChar *localName, const xmlChar *namespaceURI) argument
/external/libxslt/libxslt/
H A Dxslt.c5464 const xmlChar *namespaceURI,
5477 xmlStrEqual(cur->ns->href, namespaceURI))
5461 xsltParseFindTopLevelElem(xsltCompilerCtxtPtr cctxt, xmlNodePtr cur, const xmlChar *name, const xmlChar *namespaceURI, int breakOnOtherElem, xmlNodePtr *resultNode) argument
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h64 - (DOMDocument *)createDocument:(NSString *)namespaceURI :(NSString *)qualifiedName :(DOMDocumentType *)doctype;
68 - (DOMDocument *)createDocument:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName doctype:(DOMDocumentType *)doctype AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
117 - (DOMElement *)createElementNS:(NSString *)namespaceURI :(NSString *)qualifiedName;
118 - (DOMAttr *)createAttributeNS:(NSString *)namespaceURI :(NSString *)qualifiedName;
119 - (DOMNodeList *)getElementsByTagNameNS:(NSString *)namespaceURI :(NSString *)localName;
122 - (DOMElement *)createElementNS:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
123 - (DOMAttr *)createAttributeNS:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
124 - (DOMNodeList *)getElementsByTagNameNS:(NSString *)namespaceURI localName:(NSString *)localName AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
206 - (NSString *)getAttributeNS:(NSString *)namespaceURI :(NSString *)localName;
207 - (void)setAttributeNS:(NSString *)namespaceURI
286 @property(readonly, copy) NSString *namespaceURI; variable
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...

Completed in 551 milliseconds

123