HomeSort by relevance Sort by last modified time
    Searched refs:nodeType (Results 76 - 100 of 279) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java 132 public static void cloneToResultTree(int node, int nodeType, DTM dtm,
140 switch (nodeType)
168 SerializerUtils.processNSDecls(rth, node, nodeType, dtm);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodeappendchildchildexists.java 76 int nodeType;
101 nodeType = (int) memberNode.getNodeType();
103 if (equals(1, nodeType)) {
hc_nodeappendchilddocfragment.java 78 int nodeType;
101 nodeType = (int) child.getNodeType();
103 if (equals(1, nodeType)) {
hc_nodeinsertbefore.java 85 int nodeType;
95 nodeType = (int) child.getNodeType();
97 if (equals(1, nodeType)) {
hc_nodeinsertbeforenewchildexists.java 85 int nodeType;
95 nodeType = (int) child.getNodeType();
97 if (equals(1, nodeType)) {
nodeappendchilddocfragment.java 73 int nodeType;
97 nodeType = (int) child.getNodeType();
99 if (equals(1, nodeType)) {
hc_nodegetfirstchild.java 68 int nodeType;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
removeNamedItemNS03.java 88 int nodeType;
94 nodeType = (int) child.getNodeType();
96 if (equals(1, nodeType)) {
setNamedItemNS04.java 89 int nodeType;
95 nodeType = (int) child.getNodeType();
97 if (equals(1, nodeType)) {
  /external/chromium_org/chrome/browser/ui/cocoa/content_settings/
cookie_tree_node.h 26 - (CocoaCookieDetailsType)nodeType;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CDATASection.cpp 45 Node::NodeType CDATASection::nodeType() const
50 bool CDATASection::childTypeAllowed(NodeType) const
Comment.cpp 45 Node::NodeType Comment::nodeType() const
55 bool Comment::childTypeAllowed(NodeType) const
DocumentFragment.cpp 49 Node::NodeType DocumentFragment::nodeType() const
54 bool DocumentFragment::childTypeAllowed(NodeType type) const
  /external/chromium/chrome/browser/resources/shared/js/
parse_html_subset.js 60 switch (node.nodeType) {
75 throw Error('Node type ' + node.nodeType + ' is not supported');
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java 180 * only the immediate parent, _if_ it matches the requested nodeType.
228 * @param nodeType The extended type ID being requested.
230 public TypedChildrenIterator(int nodeType)
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 != DTM.ELEMENT_NODE)
    [all...]
  /external/chromium_org/tools/grit/grit/gather/
policy_json.py 39 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:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 56 if self.nodeType == Node.DOCUMENT_NODE:
81 if newChild.nodeType == self.DOCUMENT_FRAGMENT_NODE:
86 if newChild.nodeType not in self._child_node_types:
98 if newChild.nodeType in _nodeTypes_with_children:
113 if node.nodeType == self.DOCUMENT_FRAGMENT_NODE:
118 if node.nodeType not in self._child_node_types:
121 elif node.nodeType in _nodeTypes_with_children:
130 if newChild.nodeType == self.DOCUMENT_FRAGMENT_NODE:
134 if newChild.nodeType not in self._child_node_types:
148 if (newChild.nodeType in _nodeTypes_with_childre
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 56 if self.nodeType == Node.DOCUMENT_NODE:
81 if newChild.nodeType == self.DOCUMENT_FRAGMENT_NODE:
86 if newChild.nodeType not in self._child_node_types:
98 if newChild.nodeType in _nodeTypes_with_children:
113 if node.nodeType == self.DOCUMENT_FRAGMENT_NODE:
118 if node.nodeType not in self._child_node_types:
121 elif node.nodeType in _nodeTypes_with_children:
130 if newChild.nodeType == self.DOCUMENT_FRAGMENT_NODE:
134 if newChild.nodeType not in self._child_node_types:
148 if (newChild.nodeType in _nodeTypes_with_childre
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathStep.cpp 141 static inline Node::NodeType primaryNodeType(Step::Axis axis)
158 return node->nodeType() == Node::TEXT_NODE || node->nodeType() == Node::CDATA_SECTION_NODE;
160 return node->nodeType() == Node::COMMENT_NODE;
163 return node->nodeType() == Node::PROCESSING_INSTRUCTION_NODE && (name.isEmpty() || node->nodeName() == name);
189 if (node->nodeType() != Node::ELEMENT_NODE)
279 if (context->nodeType() == Node::ATTRIBUTE_NODE ||
280 context->nodeType() == Node::XPATH_NAMESPACE_NODE)
288 if (context->nodeType() == Node::ATTRIBUTE_NODE ||
289 context->nodeType() == Node::XPATH_NAMESPACE_NODE
    [all...]
  /external/chromium_org/tools/grit/grit/tool/
android2grd.py 237 if child.nodeType == Node.COMMENT_NODE:
240 elif child.nodeType == Node.ELEMENT_NODE:
299 if node.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
303 elif node.nodeType == Node.ELEMENT_NODE:
321 elif node.nodeType != Node.COMMENT_NODE:
322 assert False, 'Unknown node type: %s' % node.nodeType
326 (is_last_node or nodes[i + 1].nodeType == Node.ELEMENT_NODE)):
385 if childNode.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
387 elif childNode.nodeType != Node.COMMENT_NODE:
  /external/chromium_org/third_party/WebKit/PerformanceTests/DOM/resources/dom-perf/
accessors.js 71 document.nodeType;
91 o1.nodeType;
104 o1.nodeType;
145 new Benchmark("Document Get NodeType", Accessors.DocumentGet),
148 new Benchmark("Span Get NodeType", Accessors.DOMObjectGet, Accessors.DOMObjectSetup),
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNode.cpp 73 --s_nodeCount[nodeType()];
74 fprintf(stderr, "%p: %d: AudioNode::~AudioNode() %d %d\n", this, nodeType(), m_normalRefCount, m_connectionRefCount);
88 void AudioNode::setNodeType(NodeType type)
402 if (nodeType() != NodeTypeConvolver && nodeType() != NodeTypeDelay) {
424 fprintf(stderr, "%p: %d: AudioNode::ref(%d) %d %d\n", this, nodeType(), refType, m_normalRefCount, m_connectionRefCount);
487 fprintf(stderr, "%p: %d: AudioNode::deref(%d) %d %d\n", this, nodeType(), refType, m_normalRefCount, m_connectionRefCount);
  /external/chromium_org/tools/metrics/histograms/
pretty_print.py 119 if node.nodeType == xml.dom.minidom.Node.DOCUMENT_NODE:
123 if node.nodeType == xml.dom.minidom.Node.TEXT_NODE:
149 if node.nodeType == xml.dom.minidom.Node.ELEMENT_NODE:
233 if node.nodeType == xml.dom.minidom.Node.COMMENT_NODE:
267 if node.nodeType != xml.dom.minidom.Node.ELEMENT_NODE:
278 if (c.nodeType == xml.dom.minidom.Node.ELEMENT_NODE and
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentImportNode.java 25 * parentNode, nodeName, nodeType and nodeValue of the imported node to verify
72 // int nodeType;
82 // nodeType = (int) importedAttr.getNodeType();
84 // assertEquals("documentimportnode01_nodeType", 2, nodeType);
94 int nodeType;
106 nodeType = (int) importedAttr.getNodeType();
111 assertEquals("documentimportnode02_nodeType", 2, nodeType);
123 // int nodeType;
133 // nodeType = (int) importedAttr.getNodeType();
135 // assertEquals("documentimportnode03_nodeType", 2, nodeType);
    [all...]
  /external/chromium/chrome/common/extensions/docs/js/
sidebar.js 7 var TEXT_NODE = 3; // Text nodes have nodeType of 3.
69 item.firstChild.nodeType == TEXT_NODE) {

Completed in 586 milliseconds

1 2 34 5 6 7 8 91011>>