6 instantiations of DocumentRange
System.Activities (6)
System\Activities\Debugger\XamlDebuggerXmlReader.cs (3)
625
DocumentRange realValueRange = new
DocumentRange
(valueRange.Start,
627
this.SourceLocationCollector.AddValueRange(new
DocumentRange
(myStartBracket, myRealEndBracket), realValueRange);
754
new
DocumentRange
(this.startLine, this.startColumn, this.endLine, this.endColumn), out valueRange))
System\Activities\Debugger\XmlReaderWithSourceLocation.cs (3)
162
this.ContentValueRanges.Add(endElementLocation, new
DocumentRange
(contentStartLocation, contentEnd));
213
DocumentRange emptyElementRange = new
DocumentRange
(startBracket, endBracket);
224
return new
DocumentRange
(attributeStart, attributeEnd);
33 references to DocumentRange
System.Activities (33)
System\Activities\Debugger\DocumentRange.cs (2)
11
internal class DocumentRange : IEquatable<
DocumentRange
>
40
public bool Equals(
DocumentRange
other)
System\Activities\Debugger\XamlDebuggerXmlReader.cs (17)
60
private Dictionary<XamlNode,
DocumentRange
> initializationValueRanges;
86
this.initializationValueRanges = new Dictionary<XamlNode,
DocumentRange
>();
109
this.initializationValueRanges = new Dictionary<XamlNode,
DocumentRange
>();
455
DocumentRange
valueRange;
579
private void OnValueNodeDeserialized(object value,
DocumentRange
attributeValueLocation)
602
DocumentRange
myRange;
622
DocumentRange
valueRange;
625
DocumentRange
realValueRange = new DocumentRange(valueRange.Start,
690
private Dictionary<
DocumentRange
,
DocumentRange
> objRgnToInitValueRgnMapping;
695
objRgnToInitValueRgnMapping = new Dictionary<
DocumentRange
,
DocumentRange
>();
731
internal void AddValueRange(
DocumentRange
startNodeRange,
DocumentRange
valueRange)
752
DocumentRange
valueRange;
813
private
DocumentRange
attributeValueRange;
815
internal ValueNodeXamlMemberInvoker(XamlDebuggerXmlReader parent, XamlMemberInvoker wrapped,
DocumentRange
attributeValueRange)
System\Activities\Debugger\XmlReaderWithSourceLocation.cs (14)
14
private Dictionary<DocumentLocation,
DocumentRange
> attributeValueRanges;
15
private Dictionary<DocumentLocation,
DocumentRange
> emptyElementRanges;
16
private Dictionary<DocumentLocation,
DocumentRange
> contentValueRanges;
38
public Dictionary<DocumentLocation,
DocumentRange
> AttributeValueRanges
44
this.attributeValueRanges = new Dictionary<DocumentLocation,
DocumentRange
>();
51
public Dictionary<DocumentLocation,
DocumentRange
> ContentValueRanges
57
this.contentValueRanges = new Dictionary<DocumentLocation,
DocumentRange
>();
64
public Dictionary<DocumentLocation,
DocumentRange
> EmptyElementRanges
70
this.emptyElementRanges = new Dictionary<DocumentLocation,
DocumentRange
>();
119
DocumentRange
emptyElementRange = this.FindEmptyElementRange(elementLocation);
143
DocumentRange
attributeValueRange = this.FindAttributeValueLocation(memberLocation);
207
private
DocumentRange
FindEmptyElementRange(DocumentLocation elementLocation)
213
DocumentRange
emptyElementRange = new DocumentRange(startBracket, endBracket);
217
private
DocumentRange
FindAttributeValueLocation(DocumentLocation memberLocation)