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

12

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCDATASection.cpp45 Node::NodeType CDATASection::nodeType() const function in class:WebCore::CDATASection
H A DComment.cpp45 Node::NodeType Comment::nodeType() const function in class:WebCore::Comment
H A DDocumentType.cpp50 Node::NodeType DocumentType::nodeType() const function in class:WebCore::DocumentType
H A DDocumentFragment.cpp48 Node::NodeType DocumentFragment::nodeType() const function in class:WebCore::DocumentFragment
H A DProcessingInstruction.cpp70 Node::NodeType ProcessingInstruction::nodeType() const function in class:WebCore::ProcessingInstruction
H A DText.cpp69 if (nextSibling->nodeType() != TEXT_NODE)
139 Node::NodeType type = n->nodeType();
154 Node::NodeType type = n->nodeType();
232 Node::NodeType Text::nodeType() const function in class:WebCore::Text
H A DElement.cpp403 Node::NodeType Element::nodeType() const function in class:WebCore::Element
H A DDocument.cpp831 switch (importedNode->nodeType()) {
910 switch (source->nodeType()) {
1392 Node::NodeType Document::nodeType() const function in class:WebCore::Document
3038 if (c->nodeType() == type)
3047 if (oldChild.nodeType() == newChild.nodeType())
3059 switch (c->nodeType()) {
3072 if (newChild.nodeType() == DOCUMENT_FRAGMENT_NODE) {
3074 switch (c->nodeType()) {
3096 switch (newChild.nodeType()) {
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTElement.cpp33 static const QualifiedName& nodeTypeToTagName(VTTNodeType nodeType) argument
43 switch (nodeType) {
67 VTTElement::VTTElement(VTTNodeType nodeType, Document* document) argument
68 : Element(nodeTypeToTagName(nodeType), document, CreateElement)
70 , m_webVTTNodeType(nodeType)
74 PassRefPtr<VTTElement> VTTElement::create(VTTNodeType nodeType, Document* document) argument
76 return adoptRef(new VTTElement(nodeType, document));
H A DVTTParser.cpp561 VTTNodeType nodeType = tokenToNodeType(m_token); local
562 if (nodeType == VTTNodeTypeNone)
567 if (nodeType == VTTNodeTypeRubyText && currentType != VTTNodeTypeRuby)
570 RefPtr<VTTElement> child = VTTElement::create(nodeType, &document);
574 if (nodeType == VTTNodeTypeVoice) {
576 } else if (nodeType == VTTNodeTypeLanguage) {
587 VTTNodeType nodeType = tokenToNodeType(m_token); local
588 if (nodeType == VTTNodeTypeNone)
597 bool matchesCurrent = nodeType == currentType;
600 if (currentType == VTTNodeTypeRubyText && nodeType
[all...]
/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/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/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioNode.h91 NodeType nodeType() const { return m_nodeType; } function in class:WebCore::AudioNode
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebNode.cpp81 WebNode::NodeType WebNode::nodeType() const function in class:blink::WebNode
83 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...]
H A DDTMDefaultBase.java986 public int getTypedFirstChild(int nodeHandle, int nodeType) argument
990 if (nodeType < DTM.NTYPES) {
995 if (eType == nodeType
997 && m_expandedNameTable.getType(eType) == nodeType)) {
1005 if (_exptype(firstChild) == nodeType) {
1153 public int getTypedNextSibling(int nodeHandle, int nodeType) argument
1160 ((eType = _exptype(node)) != nodeType &&
1161 m_expandedNameTable.getType(eType)!= nodeType));
1162 //_type(node) != nodeType));
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMPatchSupport.cpp169 if (newNode->nodeType() != oldNode->nodeType() || newNode->nodeName() != oldNode->nodeName())
177 if (oldNode->nodeType() != Node::ELEMENT_NODE)
413 Node::NodeType nodeType = node->nodeType(); local
414 sha1.addBytes(reinterpret_cast<const uint8_t*>(&nodeType), sizeof(nodeType));
418 if (node->nodeType() == Node::ELEMENT_NODE) {
/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/chromium_org/third_party/WebKit/Source/core/editing/
H A Dmarkup.cpp660 if (node->nodeType() == Node::COMMENT_NODE && toCharacterData(node)->data() == fragmentMarkerTag) {
910 Node::NodeType nodeType = node->nodeType(); local
911 if (nodeType != Node::DOCUMENT_NODE && nodeType != Node::DOCUMENT_TYPE_NODE)
/external/chromium_org/third_party/icu/source/common/
H A Dtriedict.cpp921 BuildCompactTrieNode(UBool parentEndsWord, CompactTrieNodeType nodeType, argument
925 fNodeType = nodeType;
/external/chromium_org/third_party/libxml/src/
H A Dpattern.c92 int nodeType; /* type of node */ member in struct:_xmlStreamStep
1542 const xmlChar *ns, int nodeType, int flags) {
1560 cur->nodeType = nodeType;
1841 * @nodeType: the type of the node
1855 int nodeType) {
1869 if ((nodeType == XML_ELEMENT_NODE) &&
1881 (comp->steps[0].nodeType == XML_STREAM_ANY_NODE) &&
1918 if ((nodeType != XML_ATTRIBUTE_NODE) &&
1934 if ((nodeType !
1541 xmlStreamCompAddStep(xmlStreamCompPtr comp, const xmlChar *name, const xmlChar *ns, int nodeType, int flags) argument
1853 xmlStreamPushInternal(xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns, int nodeType) argument
2237 xmlStreamPushNode(xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns, int nodeType) argument
[all...]
/external/libxml2/
H A Dpattern.c92 int nodeType; /* type of node */ member in struct:_xmlStreamStep
1542 const xmlChar *ns, int nodeType, int flags) {
1560 cur->nodeType = nodeType;
1841 * @nodeType: the type of the node
1855 int nodeType) {
1869 if ((nodeType == XML_ELEMENT_NODE) &&
1881 (comp->steps[0].nodeType == XML_STREAM_ANY_NODE) &&
1918 if ((nodeType != XML_ATTRIBUTE_NODE) &&
1934 if ((nodeType !
1541 xmlStreamCompAddStep(xmlStreamCompPtr comp, const xmlChar *name, const xmlChar *ns, int nodeType, int flags) argument
1853 xmlStreamPushInternal(xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns, int nodeType) argument
2237 xmlStreamPushNode(xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns, int nodeType) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DDOMAgent.js46 this._nodeType = payload.nodeType;
175 nodeType: function()

Completed in 1353 milliseconds

12