4 instantiations of SequencePoint
Mono.Cecil (2)
Mono.Cecil\AssemblyReader.cs (2)
3868 sequence_points.Add (new SequencePoint (offset, document) { 3885 sequence_points.Add (new SequencePoint (offset, document) {
Mono.Cecil.Mdb (1)
Mono.Cecil.Mdb\MdbReader.cs (1)
181 return new SequencePoint (line.Offset, GetDocument (source)) {
Mono.Cecil.Pdb (1)
Mono.Cecil.Pdb\NativePdbReader.cs (1)
331 var sequence_point = new SequencePoint ((int) line.offset, document);
25 references to SequencePoint
illink (1)
Mono.Cecil (16)
Mono.Cecil.Cil\CodeReader.cs (1)
437 var sequence_point = symbol.sequence_points [i];
Mono.Cecil.Cil\Symbols.cs (8)
724 internal Collection<SequencePoint> sequence_points; 738 public Collection<SequencePoint> SequencePoints { 741 Interlocked.CompareExchange (ref sequence_points, new Collection<SequencePoint> (), null); 766 public SequencePoint GetSequencePoint (Instruction instruction) 778 public IDictionary<Instruction, SequencePoint> GetSequencePointMapping () 780 var instruction_mapping = new Dictionary<Instruction, SequencePoint> (); 784 var offset_mapping = new Dictionary<int, SequencePoint> (sequence_points.Count); 794 SequencePoint sequence_point;
Mono.Cecil\AssemblyReader.cs (5)
2844 public Collection<SequencePoint> ReadSequencePoints (MethodDefinition method) 2849 return new Collection<SequencePoint> (0); 2854 return new Collection<SequencePoint> (0); 3834 public Collection<SequencePoint> ReadSequencePoints (Document document) 3851 var sequence_points = new Collection<SequencePoint> (estimated_sequencepoint_amount);
Mono.Cecil\AssemblyWriter.cs (2)
3335 var sequence_point = info.SequencePoints [i]; 3389 var sequence_point = info.SequencePoints [i];
Mono.Cecil.Mdb (4)
Mono.Cecil.Mdb\MdbReader.cs (2)
108 info.sequence_points = new Collection<SequencePoint> (table.LineNumbers.Length); 178 SequencePoint LineToSequencePoint (LineNumberEntry line)
Mono.Cecil.Mdb\MdbWriter.cs (2)
71 void Populate (Collection<SequencePoint> sequencePoints, int [] offsets, 77 var sequence_point = sequencePoints [i];
Mono.Cecil.Pdb (4)
Mono.Cecil.Pdb\NativePdbReader.cs (2)
315 info.sequence_points = new Collection<SequencePoint> (); 331 var sequence_point = new SequencePoint ((int) line.offset, document);
Mono.Cecil.Pdb\NativePdbWriter.cs (2)
198 void DefineSequencePoints (Collection<SequencePoint> sequence_points) 201 var sequence_point = sequence_points [i];