1 instantiation of PooledArray
Microsoft.AspNetCore.Razor.Utilities.Shared (1)
31 references to PooledArray
Microsoft.AspNetCore.Razor.Utilities.Shared (14)
BufferExtensions.cs (8)
23public static PooledArray<T> GetPooledArray<T>(this ArrayPool<T> pool, int minimumLength)
42public static PooledArray<T> GetPooledArray<T>(this ArrayPool<T> pool, int minimumLength, bool clearOnReturn)
61public static PooledArray<T> GetPooledArray<T>(this ArrayPool<T> pool, int minimumLength, out T[] array)
83public static PooledArray<T> GetPooledArray<T>(this ArrayPool<T> pool, int minimumLength, bool clearOnReturn, out T[] array)
85var result = pool.GetPooledArray(minimumLength, clearOnReturn);
104public static PooledArray<T> GetPooledArraySpan<T>(this ArrayPool<T> pool, int minimumLength, out Span<T> span)
124public static PooledArray<T> GetPooledArraySpan<T>(this ArrayPool<T> pool, int minimumLength, bool clearOnReturn, out Span<T> span)
126var result = pool.GetPooledArray(minimumLength, clearOnReturn);
Microsoft.CodeAnalysis.Razor.Compiler (7)
Microsoft.CodeAnalysis.Razor.Workspaces (10)