Lines Matching full:node
21 <xsl:apply-templates select="node()"/>
61 <xsl:apply-templates select="node()"/>
67 <xsl:call-template name="counters"><xsl:with-param name="node" select="."/></xsl:call-template>
80 <!-- and a for-each to re-select the rule as the current node, to write the rule-head -->
109 <xsl:call-template name="counters"><xsl:with-param name="node" select="."/></xsl:call-template>
113 <xsl:apply-templates select="node()"/>
118 <xsl:param name="$node"/>
120 <xsl:if test="string-length($node/@packet-count)"><xsl:value-of select="$node/@packet-count"/></xsl:if>
121 <xsl:if test="string-length($node/@packet-count)=0">0</xsl:if>
123 <xsl:if test="string-length($node/@byte-count)"><xsl:value-of select="$node/@byte-count"/></xsl:if>
124 <xsl:if test="string-length($node/@byte-count)=0">0</xsl:if>
128 <!-- the bit that automatically recurses for us, NOTE: we use * not node(), we don't want to copy every white space text -->
129 <xsl:template match="@*|node()">
131 <!-- with libxslt xsltproc we can't do @*|node() or the nodes may get processed before the attributes -->
133 <xsl:apply-templates select="node()"/>