2 implementations of End
System.Private.Xml (2)
System\Xml\Xsl\SourceLineInfo.cs (1)
48public Location End { get { return this.end; } }
System\Xml\Xsl\Xslt\XsltInput.cs (1)
1202public Location End { get { return _elementTagLi.End; } }
15 references to End
System.Private.Xml (15)
System\Xml\Xsl\IlGen\GenerateHelper.cs (2)
1523_writerDump!.WriteLine("//[{0},{1} -- {2},{3}]", sourceInfo.Start.Line, sourceInfo.Start.Pos, sourceInfo.End.Line, sourceInfo.End.Pos);
System\Xml\Xsl\QIL\QilXmlWriter.cs (2)
128node.SourceLine.End.Line, node.SourceLine.End.Pos
System\Xml\Xsl\SourceLineInfo.cs (5)
70Debug.Assert(lineInfo.Start.Line == lineInfo.End.Line); 71Debug.Assert(lineInfo.Start.Pos == 0 && lineInfo.End.Pos == 0); 76Debug.Assert(0 < lineInfo.End.Line && 0 < lineInfo.End.Pos, "0 < end"); 77Debug.Assert(lineInfo.Start.LessOrEqual(lineInfo.End), "start <= end");
System\Xml\Xsl\XslException.cs (2)
180info.AddValue("EndLine", _lineInfo.End.Line, typeof(int)); 181info.AddValue("EndPos", _lineInfo.End.Pos, typeof(int));
System\Xml\Xsl\Xslt\QilGenerator.cs (1)
2804if (0 < lineInfo.Start.Line && lineInfo.Start.LessOrEqual(lineInfo.End))
System\Xml\Xsl\Xslt\XsltInput.cs (3)
1201public Location Start { get { return new Location(_elementTagLi.End.Line, _elementTagLi.End.Pos - 2); } } 1202public Location End { get { return _elementTagLi.End; } }