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