5 instantiations of OneOrMany
Microsoft.CodeAnalysis.Workspaces (5)
src\Compilers\Core\Portable\Collections\TemporaryArray`1.cs (1)
291return new(this.ToImmutableAndClear());
src\Compilers\Core\Portable\InternalUtilities\OneOrMany.cs (3)
27public static readonly OneOrMany<T> Empty = new OneOrMany<T>(ImmutableArray<T>.Empty); 165? new OneOrMany<T>(from._one) 166: new OneOrMany<T>(ImmutableArray<T>.CastUp(from._many));
Workspace\Workspace_Editor.cs (1)
809docIds = new OneOrMany<DocumentId>(id);
35 references to OneOrMany
Microsoft.CodeAnalysis.Workspaces (35)
Options\GlobalOptionService.cs (1)
189private bool SetGlobalOptions(OneOrMany<KeyValuePair<OptionKey2, object?>> options)
src\Compilers\Core\Portable\Collections\OrderPreservingMultiDictionary.cs (2)
157public OneOrMany<V> GetAsOneOrMany(K k) 165return OneOrMany<V>.Empty;
src\Compilers\Core\Portable\Collections\TemporaryArray`1.cs (3)
277/// Create an <see cref="OneOrMany{T}"/> with the elements currently held in the temporary array, and clear the 280public OneOrMany<T> ToOneOrManyAndClear() 285return OneOrMany<T>.Empty;
src\Compilers\Core\Portable\InternalUtilities\OneOrMany.cs (13)
24[DebuggerTypeProxy(typeof(OneOrMany<>.DebuggerProxy))] 27public static readonly OneOrMany<T> Empty = new OneOrMany<T>(ImmutableArray<T>.Empty); 93public OneOrMany<T> Add(T item) 113public OneOrMany<T> RemoveAll(T item) 123public OneOrMany<TResult> Select<TResult>(Func<T, TResult> selector) 130public OneOrMany<TResult> Select<TResult, TArg>(Func<T, TArg, TResult> selector, TArg arg) 162public static OneOrMany<T> CastUp<TDerived>(OneOrMany<TDerived> from) where TDerived : class, T 190public bool SequenceEqual(OneOrMany<T> other, IEqualityComparer<T>? comparer = null) 236private readonly OneOrMany<T> _collection; 239internal Enumerator(OneOrMany<T> collection) 254private sealed class DebuggerProxy(OneOrMany<T> instance) 256private readonly OneOrMany<T> _instance = instance;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\SymbolEquivalenceComparer.cs (1)
211private static OneOrMany<INamedTypeSymbol> Unwrap(INamedTypeSymbol namedType)
Workspace\ProjectSystem\ProjectSystemProject.cs (6)
1030var mappedPaths = GetMappedAnalyzerPaths(fullPath); 1073var mappedPaths = GetMappedAnalyzerPaths(fullPath); 1111private OneOrMany<string> GetMappedAnalyzerPaths(string fullPath) 1119return OneOrMany<string>.Empty; 1155private OneOrMany<string> GetMappedRazorSourceGenerator(string fullPath) 1169return OneOrMany<string>.Empty;
Workspace\Solution\TextDocumentStates.cs (6)
29using FilePathToDocumentIds = ReadOnlyDictionary<string, OneOrMany<DocumentId>>; 48new(new Dictionary<string, OneOrMany<DocumentId>>())); 332if (_filePathToDocumentIds.TryGetValue(filePath, out var oneOrMany)) 345return _filePathToDocumentIds.TryGetValue(filePath, out var oneOrMany) 356var result = new Dictionary<string, OneOrMany<DocumentId>>(SolutionState.FilePathComparer); 365result[filePath] = result.TryGetValue(filePath, out var existingValue)
Workspace\Workspace_Editor.cs (3)
35private readonly Dictionary<SourceTextContainer, OneOrMany<DocumentId>> _bufferToAssociatedDocumentsMap = []; 798if (_bufferToAssociatedDocumentsMap.TryGetValue(textContainer, out var docIds)) 824if (!_bufferToAssociatedDocumentsMap.TryGetValue(textContainer, out var docIds))