Home | History | Annotate | Download | only in lib

Lines Matching full:select

11   <xsl:param name="pFunc" select="/.."/>
17 <xsl:copy-of select="$pA0"/>
21 <xsl:apply-templates select="$pFunc[1]">
22 <xsl:with-param name="arg0" select="$pFunc[position() > 1]"/>
23 <xsl:with-param name="arg1" select="$pA0"/>
24 <xsl:with-param name="arg2" select="substring($pStr,1,1)"/>
29 <xsl:with-param name="pFunc" select="$pFunc"/>
30 <xsl:with-param name="pStr" select="substring($pStr,2)"/>
31 <xsl:with-param name="pA0" select="ext:node-set($vFunResult)"/>
43 <xsl:param name="pLineLength" select="60"/>
44 <xsl:param name="pDelimiters" select="' &#xa;'"/>
46 select="document('')/*/str-split2lines-func:*[1]"/>
49 <delimiters><xsl:value-of select="$pDelimiters"/></delimiters>
50 <lineLength><xsl:copy-of select="$pLineLength"/></lineLength>
55 <xsl:with-param name="pFunc" select="$vsplit2linesFun"/>
56 <xsl:with-param name="pStr" select="$pStr"/>
58 <xsl:with-param name="pA0" select="ext:node-set($vrtfParams)"/>
62 <xsl:for-each select="ext:node-set($vResult)/line">
63 <xsl:for-each select="word">
64 <xsl:value-of select="concat(., ' ')"/>
66 <xsl:value-of select="'&#xa;'"/>
72 <xsl:param name="arg1" select="/.."/>
75 <xsl:copy-of select="$arg1/*[position() &lt; 3]"/>
76 <xsl:copy-of select="$arg1/line[position() != last()]"/>
82 <xsl:with-param name="pLine" select="$arg1/line[last()]"/>
83 <xsl:with-param name="pWord" select="$arg1/word"/>
84 <xsl:with-param name="pLineLength" select="$arg1/*[2]"/>
89 <xsl:copy-of select="$arg1/line[last()]"/>
90 <word><xsl:value-of select="concat($arg1/word, $arg2)"/></word>
105 <xsl:param name="pLine" select="/.."/>
106 <xsl:param name="pWord" select="/.."/>
109 <xsl:variable name="vnWordsInLine" select="count($pLine/word)"/>
111 select="string-length($pLine) + $vnWordsInLine"/>
116 <xsl:copy-of select="$pLine/*"/>
117 <xsl:copy-of select="$pWord"/>
121 <xsl:copy-of select="$pLine"/>
123 <xsl:copy-of select="$pWord"/>