Searched defs:nodeName (Results 1 - 25 of 39) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DShadowRoot.cpp38 String ShadowRoot::nodeName() const function in class:WebCore::ShadowRoot
H A DComment.cpp39 String Comment::nodeName() const function in class:WebCore::Comment
H A DEntityReference.cpp39 String EntityReference::nodeName() const function in class:WebCore::EntityReference
H A DCDATASection.cpp39 String CDATASection::nodeName() const function in class:WebCore::CDATASection
H A DDocumentFragment.cpp45 String DocumentFragment::nodeName() const function in class:WebCore::DocumentFragment
H A DDocumentType.cpp44 String DocumentType::nodeName() const function in class:WebCore::DocumentType
H A DNotation.cpp36 String Notation::nodeName() const function in class:WebCore::Notation
H A DAttr.cpp75 String Attr::nodeName() const function in class:WebCore::Attr
H A DProcessingInstruction.cpp75 String ProcessingInstruction::nodeName() const function in class:WebCore::ProcessingInstruction
H A DText.cpp184 String Text::nodeName() const function in class:WebCore::Text
326 s = nodeName();
H A DElement.cpp862 String Element::nodeName() const function in class:WebCore::Element
1363 String result = "<" + nodeName();
1392 s = nodeName();
/external/webkit/Source/WebCore/xml/
H A DXPathNamespace.cpp59 String XPathNamespace::nodeName() const function in class:WebCore::XPathNamespace
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemAttribute.java153 * @param nodeName Name of the node being constructed, which may be null.
157 protected boolean validateNodeName(String nodeName) argument
159 if(null == nodeName)
161 if(nodeName.equals("xmlns"))
163 return XML11Char.isXML11ValidQName(nodeName);
170 * @param nodeName The name of the node, which may be null.
180 String nodeName, String prefix, String nodeNamespace, TransformerImpl transformer)
184 if(null != nodeName && nodeName.length() > 0)
193 String localName = QName.getLocalPart(nodeName);
179 constructNode( String nodeName, String prefix, String nodeNamespace, TransformerImpl transformer) argument
[all...]
H A DElemElement.java210 String nodeName = m_name_avt == null ? null : m_name_avt.evaluate(xctxt, sourceNode, this);
216 if ((nodeName != null) && (!m_name_avt.isSimple()) && (!XML11Char.isXML11ValidQName(nodeName)))
220 new Object[]{ Constants.ATTRNAME_NAME, nodeName });
222 nodeName = null;
225 else if (nodeName != null)
227 prefix = QName.getPrefixPart(nodeName);
245 nodeName = (prefix + ":" + QName.getLocalPart(nodeName));
247 nodeName
305 constructNode( String nodeName, String prefix, String nodeNamespace, TransformerImpl transformer) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DSyntaxTreeDumper.java56 write(nodeName(node) + " {");
68 write(nodeName(node));
71 private String nodeName(Node node) { method in class:SyntaxTreeDumper
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/shader/plugins/
H A DGLSLLoader.java90 private DependencyNode loadNode(InputStream in, String nodeName) throws IOException{ argument
91 DependencyNode node = new DependencyNode(nodeName);
93 throw new IOException("Dependency "+nodeName+" cannot be found.");
105 if (ln.equals(nodeName))
136 dependCache.put(nodeName, node);
/external/webkit/Source/WebKit/chromium/src/
H A DWebNode.cpp86 WebString WebNode::nodeName() const function in class:WebKit::WebNode
88 return m_private->nodeName();
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.h127 virtual HRESULT STDMETHODCALLTYPE nodeName(
351 virtual HRESULT STDMETHODCALLTYPE nodeName( function in class:DOMDocument
352 /* [retval][out] */ BSTR* result) { return DOMNode::nodeName(result); }
582 virtual HRESULT STDMETHODCALLTYPE nodeName( function in class:DOMElement
583 /* [retval][out] */ BSTR* result) { return DOMNode::nodeName(result); }
H A DDOMCoreClasses.cpp102 HRESULT STDMETHODCALLTYPE DOMNode::nodeName( function in class:DOMNode
111 *result = BString(m_node->nodeName()).release();
H A DDOMHTMLClasses.h207 virtual HRESULT STDMETHODCALLTYPE nodeName( function in class:DOMHTMLDocument
208 /* [retval][out] */ BSTR *result) { return DOMDocument::nodeName(result); }
481 virtual HRESULT STDMETHODCALLTYPE nodeName( function in class:DOMHTMLElement
482 /* [retval][out] */ BSTR *result) { return DOMElement::nodeName(result); }
740 virtual HRESULT STDMETHODCALLTYPE nodeName( function in class:DOMHTMLFormElement
741 /* [retval][out] */ BSTR *result) { return DOMHTMLElement::nodeName(result); }
1045 virtual HRESULT STDMETHODCALLTYPE nodeName( function in class:DOMHTMLSelectElement
1046 /* [retval][out] */ BSTR *result) { return DOMHTMLElement::nodeName(result); }
1369 virtual HRESULT STDMETHODCALLTYPE nodeName( function in class:DOMHTMLOptionElement
1370 /* [retval][out] */ BSTR *result) { return DOMHTMLElement::nodeName(resul
1667 virtual HRESULT STDMETHODCALLTYPE nodeName( function in class:DOMHTMLInputElement
2077 virtual HRESULT STDMETHODCALLTYPE nodeName( function in class:DOMHTMLTextAreaElement
2402 virtual HRESULT STDMETHODCALLTYPE nodeName( function in class:DOMHTMLIFrameElement
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLElement.cpp64 String HTMLElement::nodeName() const function in class:WebCore::HTMLElement
71 return Element::nodeName();
853 if (equalIgnoringCase(node->nodeName(), "bdi") || node->hasTagName(scriptTag) || node->hasTagName(styleTag)) {
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h275 @property(readonly, copy) NSString *nodeName; variable
/external/webkit/Source/WebCore/inspector/
H A DInspectorDOMAgent.cpp1011 String nodeName; local
1029 nodeName = node->nodeName();
1036 value->setString("nodeName", nodeName);
1323 if (!child || child->nodeName() != childName)
/external/webkit/Source/WebCore/inspector/front-end/
H A DDOMAgent.js37 this._nodeName = payload.nodeName;
98 nodeName: function()
226 var lowerCaseName = this.localName() || node.nodeName().toLowerCase();
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundlePage.cpp80 JSValueRef nodeNameValue = propertyValue(context, nodeValue, "nodeName");
82 WKRetainPtr<WKStringRef> nodeName = toWK(jsStringNodeName); local
87 out << nodeName; local

Completed in 4150 milliseconds

12