23 references to Clone
System.Private.Xml (23)
System\Xml\XPath\Internal\BaseAxisQuery.cs (1)
44this.qyInput = Clone(other.qyInput);
System\Xml\XPath\Internal\BooleanExpr.cs (2)
35_opnd1 = Clone(other._opnd1); 36_opnd2 = Clone(other._opnd2);
System\Xml\XPath\Internal\BooleanFunctions.cs (1)
25_arg = Clone(other._arg);
System\Xml\XPath\Internal\CacheOutputQuery.cs (1)
26this.input = Clone(other.input);
System\Xml\XPath\Internal\CompiledXPathExpr.cs (1)
86return new CompiledXpathExpr(Query.Clone(_query), _expr, _needContext);
System\Xml\XPath\Internal\FilterQuery.cs (1)
23_cond = Clone(other._cond);
System\Xml\XPath\Internal\FunctionQuery.cs (1)
29tmp[i] = Clone(other._args[i]);
System\Xml\XPath\Internal\LogicalExpr.cs (2)
31_opnd1 = Clone(other._opnd1); 32_opnd2 = Clone(other._opnd2);
System\Xml\XPath\Internal\MergeFilterQuery.cs (1)
21_child = Clone(other._child);
System\Xml\XPath\Internal\NodeFunctions.cs (1)
100NodeFunctions method = new NodeFunctions(_funcType, Clone(_arg));
System\Xml\XPath\Internal\NumberFunctions.cs (1)
25_arg = Clone(other._arg);
System\Xml\XPath\Internal\NumericExpr.cs (2)
40_opnd1 = Clone(other._opnd1); 41_opnd2 = Clone(other._opnd2);
System\Xml\XPath\Internal\SortQuery.cs (1)
32_qyInput = Clone(other._qyInput);
System\Xml\XPath\Internal\StringFunctions.cs (1)
33tmp[i] = Clone(other._argList[i]);
System\Xml\XPath\Internal\UnionExpr.cs (2)
27this.qy1 = Clone(other.qy1); 28this.qy2 = Clone(other.qy2);
System\Xml\XPath\XPathNavigator.cs (2)
1182Query query = Query.Clone(cexpr.QueryTree); 1207Query query = Query.Clone(cexpr.QueryTree);
System\Xml\Xsl\XsltOld\Processor.cs (2)
339_queryList[i] = Query.Clone(queryStore[i].CompiledQuery.QueryTree); 522Query expr = Query.Clone(_queryList[key]);