4 instantiations of Tag
System.Speech (4)
Internal\SrgsCompiler\Arc.cs (1)
404Tag newTag = new(tag);
Internal\SrgsCompiler\BackEnd.cs (3)
447Tag tag = new(this, propertyInfo); 457Tag tag = new(this, propertyInfo); 940Tag tag = new(this, semTag);
34 references to Tag
System.Speech (34)
Internal\SrgsCompiler\Arc.cs (21)
256foreach (Tag tag in _endTags) 317internal void AddStartTag(Tag tag) 319_startTags ??= new Collection<Tag>(); 323internal void AddEndTag(Tag tag) 325_endTags ??= new Collection<Tag>(); 357foreach (Tag tag in src._startTags) 385foreach (Tag tag in src._endTags) 397internal void CloneTags(Arc arc, List<Tag> _tags, Dictionary<Tag, Tag> endArcs, Backend? be) 401_startTags ??= new Collection<Tag>(); 402foreach (Tag tag in arc._startTags) 404Tag newTag = new(tag); 427_endTags ??= new Collection<Tag>(); 428foreach (Tag tag in arc._endTags) 430Tag newTag = endArcs[tag]; 560foreach (Tag tag in _startTags) 580foreach (Tag tag in _endTags) 719private string GetSemanticTag(Tag tag) 823private Collection<Tag>? _startTags; 824private Collection<Tag>? _endTags;
Internal\SrgsCompiler\BackEnd.cs (9)
177foreach (Tag tag in _tags) 447Tag tag = new(this, propertyInfo); 457Tag tag = new(this, propertyInfo); 473Dictionary<Tag, Tag> tags = new(); 532Dictionary<Tag, Tag> tags = new(); 940Tag tag = new(this, semTag); 1378private List<Tag> _tags = new();
Internal\SrgsCompiler\Tag.cs (4)
11internal sealed class Tag : IComparable<Tag> 15internal Tag(Tag tag) 39int IComparable<Tag>.CompareTo(Tag? tag)