Lines Matching +full:deep +full:- +full:is
4 <!-- FileName: select59 -->
5 <!-- Document: http://www.w3.org/TR/Xpath -->
6 <!-- DocVersion: 19991116 -->
7 <!-- Section: 3.3 Node Sets -->
8 <!-- Purpose: test union operator using overlapping node-sets. Results should
9 always be output in doc order regardless of order of select attribute. -->
10 <!-- Creator: Carmelo Montanez (original) --><!-- Expression019 in NIST suite -->
11 <!-- Creator: Paul Dick (this version) -->
13 <xsl:key name="which" match="child" use="@wide|@deep"/>
14 <xsl:key name="one" match="child" use="@deep"/>
20 <xsl:apply-templates select = "child[@wide='3']|child[@deep='3']"/>,
21 <xsl:apply-templates select = "child[@deep='3']|child[@wide='3']"/>,
22 <xsl:apply-templates select = "key('which','3')"/>,
23 <xsl:apply-templates select = "key('one','3') | key('two','3')"/>,
24 <xsl:apply-templates select = "child[@wide='3'] | key('one','3')"/>,
25 <xsl:apply-templates select = "key('two','3') | document('select59.xml')/child[@wide='3'] | child[@…
30 <xsl:value-of select = "."/>
34 <!--
43 * http://www.apache.org/licenses/LICENSE-2.0
46 * distributed under the License is distributed on an "AS IS" BASIS,
50 -->