Lines Matching +full:for +full:- +full:each
4 <!-- FileName: AXES15 -->
5 <!-- Document: http://www.w3.org/TR/xpath -->
6 <!-- DocVersion: 19991116 -->
7 <!-- Section: 2.2 -->
8 <!-- Purpose: Test for completion of tree using all axes. -->
14 <xsl:call-template name="show-four-directions"/>
15 <xsl:for-each select="descendant-or-self::*">
17 ------------------------------------------------
20 <xsl:text>From-</xsl:text>
21 <xsl:value-of select="name()"/>
24 <xsl:call-template name="show-four-directions"/>
26 </xsl:for-each>
30 <xsl:template name="show-four-directions">
32 <xsl:for-each select="ancestor::*">
33 <xsl:value-of select="name()"/><xsl:text> </xsl:text>
34 </xsl:for-each><xsl:text>
37 <xsl:for-each select="preceding::*">
38 <xsl:value-of select="name()"/><xsl:text> </xsl:text>
39 </xsl:for-each><xsl:text>
42 <xsl:for-each select="self::*">
43 <xsl:value-of select="name()"/><xsl:text> </xsl:text>
44 </xsl:for-each><xsl:text>
47 <xsl:for-each select="descendant::*">
48 <xsl:value-of select="name()"/><xsl:text> </xsl:text>
49 </xsl:for-each><xsl:text>
52 <xsl:for-each select="following::*">
53 <xsl:value-of select="name()"/><xsl:text> </xsl:text>
54 </xsl:for-each>
58 <!--
61 * distributed with this work for additional information
67 * http://www.apache.org/licenses/LICENSE-2.0
72 * See the License for the specific language governing permissions and
74 -->