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