HomeSort by relevance Sort by last modified time
    Searched full:nodetype (Results 1 - 25 of 239) sorted by null

1 2 3 4 5 6 7 8 910

  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
ExtendedType.java 29 private int nodetype; field in class:ExtendedType
38 * @param nodetype Type of the node
42 public ExtendedType (int nodetype, String namespace, String localName)
44 this.nodetype = nodetype;
47 this.hash = nodetype + namespace.hashCode() + localName.hashCode();
54 * @param nodetype Type of the node
59 public ExtendedType (int nodetype, String namespace, String localName, int hash)
61 this.nodetype = nodetype;
    [all...]
DTMDefaultBaseIterators.java 392 * only the immediate parent, _if_ it matches the requested nodeType.
432 * @param nodeType The extended type ID being requested.
434 public TypedChildrenIterator(int nodeType)
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 The extended type ID being requested
    [all...]
  /external/webkit/WebCore/dom/
StyleElement.cpp 66 Node::NodeType nodeType = c->nodeType();
67 if (nodeType == Node::TEXT_NODE || nodeType == Node::CDATA_SECTION_NODE || nodeType == Node::COMMENT_NODE)
75 Node::NodeType nodeType = c->nodeType();
76 if (nodeType == Node::TEXT_NODE || nodeType == Node::CDATA_SECTION_NODE || nodeType == Node::COMMENT_NODE)
    [all...]
CDATASection.h 38 virtual NodeType nodeType() const;
40 virtual bool childTypeAllowed(NodeType);
Comment.cpp 42 Node::NodeType Comment::nodeType() const
52 bool Comment::childTypeAllowed(NodeType)
Comment.h 38 virtual NodeType nodeType() const;
41 virtual bool childTypeAllowed(NodeType);
DocumentFragment.h 39 virtual NodeType nodeType() const;
41 virtual bool childTypeAllowed(NodeType);
Notation.cpp 39 Node::NodeType Notation::nodeType() const
50 bool Notation::childTypeAllowed(NodeType)
Notation.h 40 virtual NodeType nodeType() const;
42 virtual bool childTypeAllowed(NodeType);
CDATASection.cpp 44 Node::NodeType CDATASection::nodeType() const
54 bool CDATASection::childTypeAllowed(NodeType)
DocumentFragment.cpp 43 Node::NodeType DocumentFragment::nodeType() const
48 bool DocumentFragment::childTypeAllowed(NodeType type)
Text.h 51 virtual NodeType nodeType() const;
56 virtual bool childTypeAllowed(NodeType);
EntityReference.cpp 42 Node::NodeType EntityReference::nodeType() const
EntityReference.h 37 virtual NodeType nodeType() const;
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodedocumenttypenodetype.java 61 int nodeType;
65 nodeType = (int) documentTypeNode.getNodeType();
66 assertEquals("nodeType", 10, nodeType);
hc_nodecommentnodetype.java 68 int nodeType;
76 nodeType = (int) commentNode.getNodeType();
77 assertEquals("existingCommentNodeType", 8, nodeType);
81 nodeType = (int) commentNode.getNodeType();
82 assertEquals("createdCommentNodeType", 8, nodeType);
nodecdatasectionnodetype.java 74 int nodeType;
79 nodeType = (int) cdataNode.getNodeType();
81 if (equals(3, nodeType)) {
83 nodeType = (int) cdataNode.getNodeType();
85 assertEquals("nodeTypeCDATA", 4, nodeType);
nodeentityreferencenodetype.java 67 int nodeType;
72 nodeType = (int) entRefNode.getNodeType();
74 if (equals(3, nodeType)) {
77 nodeType = (int) entRefNode.getNodeType();
79 assertEquals("entityNodeType", 5, nodeType);
hc_nodeattributenodetype.java 66 int nodeType;
71 nodeType = (int) addrAttr.getNodeType();
72 assertEquals("nodeAttrNodeTypeAssert1", 2, nodeType);
hc_nodeelementnodetype.java 63 int nodeType;
66 nodeType = (int) rootNode.getNodeType();
67 assertEquals("nodeElementNodeTypeAssert1", 1, nodeType);
hc_nodetextnodetype.java 66 int nodeType;
71 nodeType = (int) textNode.getNodeType();
72 assertEquals("nodeTextNodeTypeAssert1", 3, nodeType);
nodeattributenodetype.java 67 int nodeType;
72 nodeType = (int) addrAttr.getNodeType();
73 assertEquals("nodeAttrNodeTypeAssert1", 2, nodeType);
nodeelementnodetype.java 64 int nodeType;
67 nodeType = (int) rootNode.getNodeType();
68 assertEquals("nodeElementNodeTypeAssert1", 1, nodeType);
  /external/icu4c/common/
rbbinode.h 27 enum NodeType {
54 NodeType fType;
87 RBBINode(NodeType t);
94 void findNodes(UVector *dest, RBBINode::NodeType kind, UErrorCode &status);
  /external/gtest/test/
gtest_xml_test_utils.py 68 if expected_node.nodeType == Node.CDATA_SECTION_NODE:
69 self.assertEquals(Node.CDATA_SECTION_NODE, actual_node.nodeType)
73 self.assertEquals(Node.ELEMENT_NODE, actual_node.nodeType)
74 self.assertEquals(Node.ELEMENT_NODE, expected_node.nodeType)
116 if child.nodeType == Node.ELEMENT_NODE:
122 elif child.nodeType == Node.TEXT_NODE:
124 elif child.nodeType == Node.CDATA_SECTION_NODE:
128 self.fail("Encountered unexpected node type %d" % child.nodeType)
150 if child.nodeType == Node.CDATA_SECTION_NODE:
157 if child.nodeType == Node.ELEMENT_NODE
    [all...]

Completed in 490 milliseconds

1 2 3 4 5 6 7 8 910