Searched defs:nodeType (Results 1 - 25 of 40) sorted by relevance

12

/external/webkit/Source/JavaScriptCore/API/tests/
H A DNode.h39 const char* nodeType; member in struct:__Node
H A DJSNode.c113 JSStringRef nodeType = JSStringCreateWithUTF8CString(node->nodeType); local
114 JSValueRef value = JSValueMakeString(context, nodeType);
115 JSStringRelease(nodeType);
142 { "nodeType", JSNode_getNodeType, NULL, kJSPropertyAttributeDontDelete | kJSPropertyAttributeReadOnly },
/external/webkit/Source/WebCore/dom/
H A DComment.cpp44 Node::NodeType Comment::nodeType() const function in class:WebCore::Comment
H A DEntityReference.cpp44 Node::NodeType EntityReference::nodeType() const function in class:WebCore::EntityReference
H A DCDATASection.cpp44 Node::NodeType CDATASection::nodeType() const function in class:WebCore::CDATASection
H A DDocumentFragment.cpp50 Node::NodeType DocumentFragment::nodeType() const function in class:WebCore::DocumentFragment
H A DDocumentType.cpp49 Node::NodeType DocumentType::nodeType() const function in class:WebCore::DocumentType
H A DNotation.cpp41 Node::NodeType Notation::nodeType() const function in class:WebCore::Notation
H A DAttr.cpp80 Node::NodeType Attr::nodeType() const function in class:WebCore::Attr
H A DProcessingInstruction.cpp80 Node::NodeType ProcessingInstruction::nodeType() const function in class:WebCore::ProcessingInstruction
H A DStyleElement.cpp36 Node::NodeType nodeType = node->nodeType(); local
37 return nodeType == Node::TEXT_NODE || nodeType == Node::CDATA_SECTION_NODE;
H A DText.cpp85 Node::NodeType type = n->nodeType();
102 Node::NodeType type = n->nodeType();
189 Node::NodeType Text::nodeType() const function in class:WebCore::Text
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DClonerToResultTree.java132 public static void cloneToResultTree(int node, int nodeType, DTM dtm, argument
140 switch (nodeType)
168 SerializerUtils.processNSDecls(rth, node, nodeType, dtm);
/external/webkit/Source/WebCore/xml/
H A DXPathNamespace.cpp74 Node::NodeType XPathNamespace::nodeType() const function in class:WebCore::XPathNamespace
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DACBTree.h51 NSInteger nodeType; /* 1 = node, 2 = leaf, -1 = unused */ variable
67 @property (assign) NSInteger nodeType; variable
/external/webkit/Source/WebKit/chromium/src/
H A DWebNode.cpp76 WebNode::NodeType WebNode::nodeType() const function in class:WebKit::WebNode
78 return static_cast<NodeType>(m_private->nodeType());
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseIterators.java392 * only the immediate parent, _if_ it matches the requested nodeType.
432 * @param nodeType The extended type ID being requested.
434 public TypedChildrenIterator(int nodeType) argument
436 _nodeType = nodeType;
475 int nodeType = _nodeType;
477 if (nodeType >= DTM.NTYPES) {
478 while (node != DTM.NULL && _exptype(node) != nodeType) {
485 if (eType == nodeType) {
488 } else if (m_expandedNameTable.getType(eType) == nodeType) {
651 * @param nodeType Th
653 TypedNamespaceIterator(int nodeType) argument
754 TypedRootIterator(int nodeType) argument
1031 TypedAttributeIterator(int nodeType) argument
1934 TypedDescendantIterator(int nodeType) argument
2160 TypedSingletonIterator(int nodeType) argument
[all...]
/external/webkit/Source/WebCore/loader/archive/cf/
H A DLegacyWebArchive.cpp427 Node::NodeType nodeType = node->nodeType(); local
428 if (nodeType != Node::DOCUMENT_NODE && nodeType != Node::DOCUMENT_TYPE_NODE)
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.h136 virtual HRESULT STDMETHODCALLTYPE nodeType(
360 virtual HRESULT STDMETHODCALLTYPE nodeType( function in class:DOMDocument
361 /* [retval][out] */ unsigned short* result) { return DOMNode::nodeType(result); }
591 virtual HRESULT STDMETHODCALLTYPE nodeType( function in class:DOMElement
592 /* [retval][out] */ unsigned short* result) { return DOMNode::nodeType(result); }
H A DDOMCoreClasses.cpp134 HRESULT STDMETHODCALLTYPE DOMNode::nodeType( function in class:DOMNode
467 WebCore::Node::NodeType nodeType = n->nodeType(); local
469 switch (nodeType) {
H A DDOMHTMLClasses.h216 virtual HRESULT STDMETHODCALLTYPE nodeType( function in class:DOMHTMLDocument
217 /* [retval][out] */ unsigned short *result) { return DOMDocument::nodeType(result); }
490 virtual HRESULT STDMETHODCALLTYPE nodeType( function in class:DOMHTMLElement
491 /* [retval][out] */ unsigned short *result) { return DOMElement::nodeType(result); }
749 virtual HRESULT STDMETHODCALLTYPE nodeType( function in class:DOMHTMLFormElement
750 /* [retval][out] */ unsigned short *result) { return DOMHTMLElement::nodeType(result); }
1054 virtual HRESULT STDMETHODCALLTYPE nodeType( function in class:DOMHTMLSelectElement
1055 /* [retval][out] */ unsigned short *result) { return DOMHTMLElement::nodeType(result); }
1378 virtual HRESULT STDMETHODCALLTYPE nodeType( function in class:DOMHTMLOptionElement
1379 /* [retval][out] */ unsigned short *result) { return DOMHTMLElement::nodeType(resul
1676 virtual HRESULT STDMETHODCALLTYPE nodeType( function in class:DOMHTMLInputElement
2086 virtual HRESULT STDMETHODCALLTYPE nodeType( function in class:DOMHTMLTextAreaElement
2411 virtual HRESULT STDMETHODCALLTYPE nodeType( function in class:DOMHTMLIFrameElement
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOM3TreeWalker.java476 protected boolean applyFilter(Node node, int nodeType) { argument
477 if (fFilter != null && (fWhatToShowFilter & nodeType) != 0) {
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM2.java180 * only the immediate parent, _if_ it matches the requested nodeType.
228 * @param nodeType The extended type ID being requested.
230 public TypedChildrenIterator(int nodeType) argument
232 _nodeType = nodeType;
272 final int nodeType = _nodeType;
274 if (nodeType != DTM.ELEMENT_NODE) {
275 while (node != DTM.NULL && _exptype2(node) != nodeType) {
279 // %OPT% If the nodeType is element (matching child::*), we only
316 final int nodeType = _nodeType;
317 if (nodeType !
359 TypedRootIterator(int nodeType) argument
562 TypedAttributeIterator(int nodeType) argument
1648 TypedDescendantIterator(int nodeType) argument
1737 TypedSingletonIterator(int nodeType) argument
[all...]
/external/srec/tools/grxmlcompile/
H A Dgrxmldoc.cpp205 KeywordValues nodeType = NodeTypeBadValue; local
208 nodeType = (*pos).second;
209 DEBUG_PRINT("nodeType=" + nodeType);
218 switch ( nodeType )
286 KeywordValues nodeType = NodeTypeBadValue; local
289 nodeType = (*pos).second;
300 switch ( nodeType )
/external/webkit/Source/WebCore/editing/
H A Dmarkup.cpp878 Node::NodeType nodeType = node->nodeType(); local
879 if (nodeType != Node::DOCUMENT_NODE && nodeType != Node::DOCUMENT_TYPE_NODE)

Completed in 6458 milliseconds

12