16 references to WithParam
System.Data.SqlXml (16)
System\Xml\Xsl\Xslt\QilGenerator.cs (5)
999
Debug.Assert(withParam.NodeType == XslNodeType.
WithParam
);
1240
Debug.Assert(node.NodeType == XslNodeType.Variable || node.NodeType == XslNodeType.Param || node.NodeType == XslNodeType.
WithParam
);
1271
Debug.Assert(withParam.NodeType == XslNodeType.
WithParam
);
2151
Debug.Assert(actualArgs[actArg].NodeType == XslNodeType.
WithParam
, "All Sorts was removed in CompileSorts()");
2218
Debug.Assert(actualArgs[i].NodeType == XslNodeType.
WithParam
, "All Sorts was removed in CompileSorts()");
System\Xml\Xsl\Xslt\XslAst.cs (1)
509
return VarPar(XslNodeType.
WithParam
, name, /*select*/null, XslVersion.Current);
System\Xml\Xsl\Xslt\XslAstAnalyzer.cs (6)
383
if (instr.NodeType == XslNodeType.
WithParam
) {
438
Debug.Assert(instr.NodeType == XslNodeType.
WithParam
);
677
if (typeDonor != null && node.NodeType != XslNodeType.
WithParam
) {
1151
(1 << (int)XslNodeType.
WithParam
) |
1175
(1 << (int)XslNodeType.
WithParam
) |
1294
var withparam = AstFactory.VarPar(XslNodeType.
WithParam
, paramname, '$' + paramname.QualifiedName, XslVersion.Current);
System\Xml\Xsl\Xslt\XsltLoader.cs (3)
1755
Ref.Equal(localName, atoms.WithParam) ? XslNodeType.
WithParam
:
2346
Debug.Assert(withParam.NodeType == XslNodeType.
WithParam
);
2348
if (node.NodeType == XslNodeType.
WithParam
&& node.Name.Equals(withParam.Name)) {
System\Xml\Xsl\Xslt\XslVisitor.cs (1)
43
case XslNodeType.
WithParam
: return VisitWithParam ((VarPar) node);