17 references to WithParam
System.Private.Xml (17)
System\Xml\Xsl\Xslt\QilGenerator.cs (5)
1179
Debug.Assert(withParam.NodeType == XslNodeType.
WithParam
);
1470
Debug.Assert(node.NodeType == XslNodeType.Variable || node.NodeType == XslNodeType.Param || node.NodeType == XslNodeType.
WithParam
);
1508
Debug.Assert(withParam.NodeType == XslNodeType.
WithParam
);
2581
Debug.Assert(actualArgs[actArg].NodeType == XslNodeType.
WithParam
, "All Sorts was removed in CompileSorts()");
2662
Debug.Assert(actualArgs[i].NodeType == XslNodeType.
WithParam
, "All Sorts was removed in CompileSorts()");
System\Xml\Xsl\Xslt\XslAst.cs (1)
527
return VarPar(XslNodeType.
WithParam
, name, /*select*/null, XslVersion.Current);
System\Xml\Xsl\Xslt\XslAstAnalyzer.cs (7)
362
if (instr.NodeType == XslNodeType.
WithParam
)
429
Debug.Assert(instr.NodeType == XslNodeType.
WithParam
);
695
if (node.NodeType != XslNodeType.
WithParam
)
714
if (_typeDonor != null && node.NodeType != XslNodeType.
WithParam
)
1300
(1 << (int)XslNodeType.
WithParam
) |
1324
(1 << (int)XslNodeType.
WithParam
) |
1455
var withparam = AstFactory.VarPar(XslNodeType.
WithParam
, paramname, $"${paramname.QualifiedName}", XslVersion.Current);
System\Xml\Xsl\Xslt\XsltLoader.cs (3)
1918
Ref.Equal(localName, _atoms.WithParam) ? XslNodeType.
WithParam
:
2524
Debug.Assert(withParam.NodeType == XslNodeType.
WithParam
);
2527
if (node.NodeType == XslNodeType.
WithParam
&& node.Name!.Equals(withParam.Name))
System\Xml\Xsl\Xslt\XslVisitor.cs (1)
43
XslNodeType.
WithParam
=> VisitWithParam((VarPar)node),