3 instantiations of AssemblyReferenceCandidate
Microsoft.CodeAnalysis (3)
ReferenceManager\CommonReferenceManager.Binding.cs (3)
765
candidatesToExamine.Enqueue(new
AssemblyReferenceCandidate
(i, candidateAssembly));
892
candidatesToExamine.Enqueue(new
AssemblyReferenceCandidate
(definitionIndex, currentCandidateReferencedSymbol));
936
candidatesToExamine.Enqueue(new
AssemblyReferenceCandidate
(corLibraryIndex, candidateCorLibrary));
5 references to AssemblyReferenceCandidate
Microsoft.CodeAnalysis (5)
ReferenceManager\CommonReferenceManager.Binding.cs (5)
723
private static readonly ObjectPool<Queue<
AssemblyReferenceCandidate
>> s_candidatesToExaminePool = new ObjectPool<Queue<
AssemblyReferenceCandidate
>>(() => new Queue<
AssemblyReferenceCandidate
>());
729
Queue<
AssemblyReferenceCandidate
> candidatesToExamine = s_candidatesToExaminePool.Allocate();
769
AssemblyReferenceCandidate
candidate = candidatesToExamine.Dequeue();