3 writes to NamespaceUri
System.Private.Xml (3)
System\Xml\Xsl\QIL\QilName.cs (1)
33NamespaceUri = uri;
System\Xml\Xsl\Xslt\QilGenerator.cs (2)
866qname.NamespaceUri = nsUri; 924qname.NamespaceUri = nsUri;
36 references to NamespaceUri
System.Private.Xml (36)
System\Xml\Xsl\IlGen\XmlILConstructAnalyzer.cs (2)
868qname = new XmlQualifiedName(_attrNames.Add(ndName.LocalName), _attrNames.Add(ndName.NamespaceUri)); 1050ns = ndName.NamespaceUri;
System\Xml\Xsl\IlGen\XmlILOptimizerVisitor.cs (1)
186if (((QilInvokeEarlyBound)node).Name.NamespaceUri.Length != 0)
System\Xml\Xsl\IlGen\XmlIlVisitor.cs (15)
154_helper.CallGetParameter(param.Name!.LocalName, param.Name.NamespaceUri); 195_helper.Emit(OpCodes.Ldstr, SR.Format(SR.XmlIl_UnknownParam, new string?[] { param!.Name!.LocalName, param.Name.NamespaceUri })); 594_helper.ConstructLiteralQName(ndQName.LocalName, ndQName.NamespaceUri); 1955_helper.CallGetAtomizedName(_helper.StaticData.DeclareName(name.NamespaceUri)); 2611_helper.CallGetAtomizedName(_helper.StaticData.DeclareName(ndName.NamespaceUri)); 3567_helper.Emit(OpCodes.Ldstr, ndName.NamespaceUri); 3615extFunc = new XmlExtensionFunction(ndName.LocalName, ndName.NamespaceUri, ndInvoke.ClrMethod); 3630if (ndName.NamespaceUri.Length == 0) 3633_helper.CallGetEarlyBoundObject(_helper.StaticData.DeclareEarlyBound(ndName.NamespaceUri, extFunc.Method.DeclaringType!), extFunc.Method.DeclaringType!); 3656if (ndName.NamespaceUri.Length == 0) 3722else if (ndName.NamespaceUri.Length != 0 && !clrTypeRetSrc.IsValueType) 4121ns = ndLiteralName.NamespaceUri; 4127if (ndLiteralName.NamespaceUri.Length == 0) 4259_helper.LoadInteger(_helper.StaticData.DeclareName(ndName.NamespaceUri)); 4617_helper.CallGetNameFilter(_helper.StaticData.DeclareNameFilter(ndName.LocalName, ndName.NamespaceUri));
System\Xml\Xsl\QIL\QilTypeChecker.cs (1)
948XmlExtensionFunction extFunc = new XmlExtensionFunction(node.Name.LocalName, node.Name.NamespaceUri, node.ClrMethod);
System\Xml\Xsl\Xslt\Compiler.cs (1)
265string nsUri = qname.NamespaceUri;
System\Xml\Xsl\Xslt\CompilerScopeManager.cs (2)
201Debug.Assert(varName.LocalName != null && varName.NamespaceUri != null); 202AddRecord(ScopeFlags.Variable, varName.LocalName, varName.NamespaceUri, value);
System\Xml\Xsl\Xslt\Focus.cs (3)
109Debug.Assert(_current.Name!.NamespaceUri == XmlReservedNs.NsXslDebug && _current.Name.LocalName == "current"); 114Debug.Assert(_position.Name!.NamespaceUri == XmlReservedNs.NsXslDebug && _position.Name.LocalName == "position"); 119Debug.Assert(_last.Name!.NamespaceUri == XmlReservedNs.NsXslDebug && _last.Name.LocalName == "last");
System\Xml\Xsl\Xslt\InvokeGenerator.cs (2)
58if (formalArg.Name!.NamespaceUri == XmlReservedNs.NsXslDebug) 71Debug.Assert(formalArg.Name!.NamespaceUri != XmlReservedNs.NsXslDebug, "Cur,Pos,Last don't have default values and should be always added to by caller in AddImplicitArgs(). We don't have $namespaces in !debug.");
System\Xml\Xsl\Xslt\QilGenerator.cs (6)
525if (_scope.IsLocalVariable(xslPar.Name!.LocalName, xslPar.Name.NamespaceUri)) 651if (arg.Name!.NamespaceUri != XmlReservedNs.NsXslDebug) 813string nsUri = qname.NamespaceUri; 917string nsUri = qname.NamespaceUri; 1461if (_scope.IsLocalVariable(node.Name!.LocalName, node.Name.NamespaceUri)) 2755qname.NamespaceUri == ResolvePrefix(/*ignoreDefaultNs:*/true, qname.Prefix),
System\Xml\Xsl\Xslt\Stylesheet.cs (1)
87Debug.Assert(var.Name!.NamespaceUri != null, "Name must be resolved in XsltLoader");
System\Xml\Xsl\Xslt\XslAstAnalyzer.cs (2)
1446if (Compiler.IsPhantomNamespace(variable.Name!.NamespaceUri)) 1452var paramname = AstFactory.QName(variable.Name.LocalName, variable.Name.NamespaceUri, variable.Name.Prefix);