2 writes to unmappedBreakpoints
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (2)
76
this.
unmappedBreakpoints
= new Dictionary<SourceLocation, BreakpointTypes>(4);
636
this.
unmappedBreakpoints
= newUnmappedBreakpoints;
15 references to unmappedBreakpoints
System.Data (15)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Debugger\DebuggerService.cs (15)
363
if (this.
unmappedBreakpoints
.TryGetValue(sourceLocation, out breakpointType))
366
this.
unmappedBreakpoints
.Remove(sourceLocation);
372
if (this.
unmappedBreakpoints
.Count > 0)
375
unmappedLocations.AddRange(this.
unmappedBreakpoints
.Keys);
536
if (this.breakpoints.Count > 0 || this.
unmappedBreakpoints
.Count > 0)
549
foreach (KeyValuePair<SourceLocation, BreakpointTypes> entry in this.
unmappedBreakpoints
)
574
if (this.
unmappedBreakpoints
.TryGetValue(sourceLocation, out oldBreakpointType))
578
this.
unmappedBreakpoints
.Remove(sourceLocation);
582
this.
unmappedBreakpoints
[sourceLocation] = newBreakpointType;
587
this.
unmappedBreakpoints
.Add(sourceLocation, newBreakpointType);
604
this.
unmappedBreakpoints
.Clear();
623
if (this.
unmappedBreakpoints
.Count > 0)
625
Dictionary<SourceLocation, BreakpointTypes> newUnmappedBreakpoints = new Dictionary<SourceLocation, BreakpointTypes>(this.
unmappedBreakpoints
.Count);
628
if (this.
unmappedBreakpoints
.ContainsKey(kvpEntry.Value))
632
newUnmappedBreakpoints.Add(newSourceLocationMapping[kvpEntry.Key], this.
unmappedBreakpoints
[kvpEntry.Value]);