Searched refs:nodeType (Results 1 - 25 of 196) sorted by relevance

12345678

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCDATASection.h39 virtual NodeType nodeType() const OVERRIDE;
43 DEFINE_NODE_TYPE_CASTS(CDATASection, nodeType() == Node::CDATA_SECTION_NODE);
H A DComment.h39 virtual NodeType nodeType() const OVERRIDE;
43 DEFINE_NODE_TYPE_CASTS(Comment, nodeType() == Node::COMMENT_NODE);
H A DCDATASection.cpp44 Node::NodeType CDATASection::nodeType() const function in class:blink::CDATASection
H A DComment.cpp44 Node::NodeType Comment::nodeType() const function in class:blink::Comment
H A DProcessingInstruction.h60 virtual NodeType nodeType() const OVERRIDE;
89 DEFINE_NODE_TYPE_CASTS(ProcessingInstruction, nodeType() == Node::PROCESSING_INSTRUCTION_NODE);
93 return node.nodeType() == Node::PROCESSING_INSTRUCTION_NODE && toProcessingInstruction(node).isXSL();
H A DNodeIteratorBase.cpp47 if (!(((1 << (node->nodeType() - 1)) & m_whatToShow)))
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemCopy.java99 short nodeType = dtm.getNodeType(sourceNode);
101 if ((DTM.DOCUMENT_NODE != nodeType) && (DTM.DOCUMENT_FRAGMENT_NODE != nodeType))
106 ClonerToResultTree.cloneToResultTree(sourceNode, nodeType, dtm,
109 if (DTM.ELEMENT_NODE == nodeType)
112 SerializerUtils.processNSDecls(rthandler, sourceNode, nodeType, dtm);
/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 PassRefPtrWillBeRawPtr<VTTElement> VTTElement::create(VTTNodeType nodeType, Document* document) argument
76 return adoptRefWillBeNoop(new VTTElement(nodeType, document));
/external/deqp/framework/common/
H A DtcuTestCase.cpp46 TestNode::TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description) argument
48 , m_nodeType (nodeType)
55 TestNode::TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description, const vector<TestNode*>& children) argument
57 , m_nodeType (nodeType)
133 TestCase::TestCase (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description) argument
134 : TestNode(testCtx, nodeType, name, description)
136 DE_ASSERT(isTestNodeTypeExecutable(nodeType));
H A DtcuTestCase.hpp85 TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description);
86 TestNode (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description, const std::vector<TestNode*>& children);
153 TestCase (TestContext& testCtx, TestNodeType nodeType, const char* name, const char* description);
/external/chromium_org/testing/gtest/test/
H A Dgtest_xml_test_utils.py70 if expected_node.nodeType == Node.CDATA_SECTION_NODE:
71 self.assertEquals(Node.CDATA_SECTION_NODE, actual_node.nodeType)
75 self.assertEquals(Node.ELEMENT_NODE, actual_node.nodeType)
76 self.assertEquals(Node.ELEMENT_NODE, expected_node.nodeType)
132 if child.nodeType == Node.ELEMENT_NODE:
138 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
140 if (child.nodeType == Node.CDATA_SECTION_NODE or
147 self.fail('Encountered unexpected node type %d' % child.nodeType)
186 if child.nodeType == Node.CDATA_SECTION_NODE:
193 if child.nodeType
[all...]
/external/gtest/test/
H A Dgtest_xml_test_utils.py70 if expected_node.nodeType == Node.CDATA_SECTION_NODE:
71 self.assertEquals(Node.CDATA_SECTION_NODE, actual_node.nodeType)
75 self.assertEquals(Node.ELEMENT_NODE, actual_node.nodeType)
76 self.assertEquals(Node.ELEMENT_NODE, expected_node.nodeType)
132 if child.nodeType == Node.ELEMENT_NODE:
138 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
140 if (child.nodeType == Node.CDATA_SECTION_NODE or
147 self.fail('Encountered unexpected node type %d' % child.nodeType)
186 if child.nodeType == Node.CDATA_SECTION_NODE:
193 if child.nodeType
[all...]
/external/protobuf/gtest/test/
H A Dgtest_xml_test_utils.py69 if expected_node.nodeType == Node.CDATA_SECTION_NODE:
70 self.assertEquals(Node.CDATA_SECTION_NODE, actual_node.nodeType)
74 self.assertEquals(Node.ELEMENT_NODE, actual_node.nodeType)
75 self.assertEquals(Node.ELEMENT_NODE, expected_node.nodeType)
127 if child.nodeType == Node.ELEMENT_NODE:
133 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
135 if (child.nodeType == Node.CDATA_SECTION_NODE or
142 self.fail("Encountered unexpected node type %d" % child.nodeType)
164 if child.nodeType == Node.CDATA_SECTION_NODE:
171 if child.nodeType
[all...]
/external/deqp/modules/gles3/
H A Dtes3TestCase.hpp52 TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description);
77 inline TestCase::TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description) argument
78 : tcu::TestCase (context.getTestContext(), nodeType, name, description)
/external/deqp/modules/gles31/
H A Dtes31TestCase.hpp52 TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description);
77 inline TestCase::TestCase (Context& context, tcu::TestNodeType nodeType, const char* name, const char* description) argument
78 : tcu::TestCase (context.getTestContext(), nodeType, name, description)
/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/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DDOMPresentationUtils.js169 if (node.nodeType() !== Node.ELEMENT_NODE)
181 if (node.nodeType() !== Node.ELEMENT_NODE)
199 if (node.nodeType() !== Node.ELEMENT_NODE)
226 if (node.nodeType() !== Node.ELEMENT_NODE)
242 if (!parent || parent.nodeType() === Node.DOCUMENT_NODE)
334 if (sibling.nodeType() !== Node.ELEMENT_NODE)
388 if (node.nodeType() === Node.DOCUMENT_NODE)
419 switch (node.nodeType()) {
449 return new WebInspector.DOMNodePathStep(ownValue, node.nodeType() === Node.DOCUMENT_NODE);
464 if (left.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/chromium_org/chrome/browser/ui/cocoa/content_settings/
H A Dcookie_tree_node.h26 - (CocoaCookieDetailsType)nodeType;
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioNode.cpp76 --s_nodeCount[nodeType()];
78 this, nodeType(), m_connectionRefCount, s_nodeCount[nodeType()]);
155 fprintf(stderr, "%p: %2d: AudioNode::AudioNode [%3d]\n", this, nodeType(), s_nodeCount[nodeType()]);
476 if (nodeType() != NodeTypeConvolver && nodeType() != NodeTypeDelay) {
490 this, nodeType(), m_connectionRefCount, s_nodeCount[nodeType()]);
533 this, nodeType(), m_connectionRefCoun
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathUtil.cpp44 switch (node->nodeType()) {
74 switch (node->nodeType()) {
/external/chromium_org/tools/grit/grit/gather/
H A Dpolicy_json.py39 if (node1.nodeType == minidom.Node.TEXT_NODE):
41 elif (node1.nodeType == minidom.Node.ELEMENT_NODE and
73 if child.nodeType == minidom.Node.TEXT_NODE:
75 elif child.nodeType == minidom.Node.ELEMENT_NODE:
99 if child.nodeType == minidom.Node.TEXT_NODE:
104 elif child.nodeType == minidom.Node.ELEMENT_NODE:
112 if child.nodeType == minidom.Node.TEXT_NODE:
114 elif node.nodeType == minidom.Node.ELEMENT_NODE:
/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/chromium_org/chrome/test/chromedriver/js/
H A Dcall_function.js146 var nodeType = value['nodeType'];
147 if (nodeType == NodeType.ELEMENT || nodeType == NodeType.DOCUMENT
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dtag_watcher.js21 if (addedNode.nodeType == Node.ELEMENT_NODE) {

Completed in 522 milliseconds

12345678