Searched refs:node (Results 1 – 2 of 2) sorted by relevance
312 function isRawContent(node) { argument313 return 'XMP' === node.tagName;316 function normalizedHtml(node, out) { argument317 switch (node.nodeType) {319 var name = node.tagName.toLowerCase();321 for (var i = 0; i < node.attributes.length; ++i) {322 var attr = node.attributes[i];328 for (var child = node.firstChild; child; child = child.nextSibling) {331 if (node.firstChild || !/^(?:br|link|img)$/.test(name)) {336 out.push(node.name.toLowerCase(), '="', attribToHtml(node.value), '"');[all …]
80 SsaBasicBlock node = nodes.get(i); in run() local82 + node.getPredecessors()); in run()123 SsaBasicBlock node = nodes.get(i); in debugPrintDomChildren() local128 for (SsaBasicBlock child : node.getDomChildren()) { in debugPrintDomChildren()137 System.out.println("domChildren[" + node + "]: " in debugPrintDomChildren()