9 instantiations of IdentifierCollection
Microsoft.CodeAnalysis (4)
MetadataReader\PEModule.cs (4)
833return new IdentifierCollection(typeNames); 837return new IdentifierCollection(); 856return new IdentifierCollection(namespaceNames); 860return new IdentifierCollection();
Microsoft.CodeAnalysis.UnitTests (4)
Collections\IdentifierCollectionTests.cs (4)
38var idcol = new IdentifierCollection(strings).AsCaseSensitiveCollection(); 55var idcol = new IdentifierCollection(strings).AsCaseInsensitiveCollection(); 74TestReadOnly(new IdentifierCollection(strs).AsCaseSensitiveCollection()); 75TestReadOnly(new IdentifierCollection(strs).AsCaseInsensitiveCollection());
Microsoft.CodeAnalysis.VisualBasic (1)
Declarations\DeclarationTable.vb (1)
244Dim result = New IdentifierCollection
12 references to IdentifierCollection
Microsoft.CodeAnalysis (12)
Collections\IdentifierCollection.Collection.cs (4)
17protected readonly IdentifierCollection IdentifierCollection; 20protected CollectionBase(IdentifierCollection identifierCollection) 98public CaseSensitiveCollection(IdentifierCollection identifierCollection) : base(identifierCollection) 107public CaseInsensitiveCollection(IdentifierCollection identifierCollection) : base(identifierCollection)
MetadataReader\PEModule.cs (8)
57private readonly Lazy<IdentifierCollection> _lazyTypeNameCollection; 58private readonly Lazy<IdentifierCollection> _lazyNamespaceNameCollection; 144_lazyTypeNameCollection = new Lazy<IdentifierCollection>(ComputeTypeNameCollection); 145_lazyNamespaceNameCollection = new Lazy<IdentifierCollection>(ComputeNamespaceNameCollection); 822private IdentifierCollection ComputeTypeNameCollection() 841private IdentifierCollection ComputeNamespaceNameCollection() 3599internal IdentifierCollection TypeNames 3607internal IdentifierCollection NamespaceNames