4 instantiations of IdentifierCollection
Microsoft.CodeAnalysis (4)
MetadataReader\PEModule.cs (4)
861return new IdentifierCollection(typeNames); 865return new IdentifierCollection(); 884return new IdentifierCollection(namespaceNames); 888return 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)
67private readonly Lazy<IdentifierCollection> _lazyTypeNameCollection; 68private readonly Lazy<IdentifierCollection> _lazyNamespaceNameCollection; 156_lazyTypeNameCollection = new Lazy<IdentifierCollection>(ComputeTypeNameCollection); 157_lazyNamespaceNameCollection = new Lazy<IdentifierCollection>(ComputeNamespaceNameCollection); 850private IdentifierCollection ComputeTypeNameCollection() 869private IdentifierCollection ComputeNamespaceNameCollection() 3923internal IdentifierCollection TypeNames 3931internal IdentifierCollection NamespaceNames