1 write to _atoms
System.Private.Xml (1)
System\Xml\Xsl\Xslt\XsltInput.cs (1)
48_atoms = atoms;
39 references to _atoms
System.Private.Xml (39)
System\Xml\Xsl\Xslt\XsltInput.cs (39)
138string nsAtomizedValue = _atoms.NameTable.Add(prefixNamespacePair.Value); 176rec.localName = _atoms.NameTable.Add(rec.localName); 177rec.nsUri = _atoms.NameTable.Add(rec.nsUri); 178rec.prefix = _atoms.NameTable.Add(rec.prefix); 275if (Ref.Equal(rec.prefix, _atoms.Xmlns)) 277string atomizedValue = _atoms.NameTable.Add(_reader.Value); 278if (!Ref.Equal(rec.localName, _atoms.Xml)) 285else if (rec.prefix.Length == 0 && Ref.Equal(rec.localName, _atoms.Xmlns)) 287string atomizedValue = _atoms.NameTable.Add(_reader.Value); 598public bool IsXsltNamespace() { return IsNs(_atoms.UriXsl); } 650Debug.Assert(IsKeyword(_atoms.Version)); 654ReportError(/*[XT0110]*/SR.Xslt_InvalidAttrValue, _atoms.Version, Value); 727bool isXslOutput = IsXsltNamespace() && IsKeyword(_atoms.Output); 728bool SS = IsXsltNamespace() && (IsKeyword(_atoms.Stylesheet) || IsKeyword(_atoms.Transform)); 741if (IsNullNamespace() && IsKeyword(_atoms.Version)) 777if (Ref.Equal(localName, _atoms.ExcludeResultPrefixes) && (SS || V2)) { attExclude = attNum; } 779if (Ref.Equal(localName, _atoms.ExtensionElementPrefixes) && (SS || V2)) { attExtension = attNum; } 781if (Ref.Equal(localName, _atoms.XPathDefaultNamespace) && (V2)) { attNamespace = attNum; } 783if (Ref.Equal(localName, _atoms.DefaultCollation) && (V2)) { attCollation = attNum; } 785if (Ref.Equal(localName, _atoms.UseWhen) && (V2)) { attUseWhen = attNum; } 818ReportNYI(_atoms.UseWhen); 858if (Ref.Equal(localName, _atoms.Version)) { attVersion = i; } 860if (Ref.Equal(localName, _atoms.ExtensionElementPrefixes)) { attExtension = i; } 862if (Ref.Equal(localName, _atoms.ExcludeResultPrefixes)) { attExclude = i; } 864if (Ref.Equal(localName, _atoms.XPathDefaultNamespace)) { attNamespace = i; } 866if (Ref.Equal(localName, _atoms.DefaultCollation)) { attCollation = i; } 868if (Ref.Equal(localName, _atoms.UseWhen)) { attUseWhen = i; } 884ReportError(Ref.Equal(NamespaceUri, _atoms.UriWdXsl) && Ref.Equal(LocalName, _atoms.Stylesheet) ? 907ReportNYI(_atoms.UseWhen); 928if (IsNullNamespace() && IsKeyword(_atoms.Version)) 948Debug.Assert(extensions ? IsKeyword(_atoms.ExtensionElementPrefixes) : IsKeyword(_atoms.ExcludeResultPrefixes)); 1001Debug.Assert(IsKeyword(_atoms.XPathDefaultNamespace)); 1004ReportNYI(_atoms.XPathDefaultNamespace); 1013Debug.Assert(IsKeyword(_atoms.DefaultCollation)); 1031ReportNYI(_atoms.DefaultCollation); 1099Debug.Assert(Ref.Equal(_atoms.NameTable.Get(nsUri), nsUri), "Namespaces must be atomized");