4 references to LargeObjectHeapLimitInChars
Microsoft.CodeAnalysis (4)
Text\LargeText.cs (1)
26internal const int ChunkSize = SourceText.LargeObjectHeapLimitInChars; // 40K Unicode chars is 80KB which is less than the large object heap limit.
Text\SourceText.cs (2)
143if (length >= LargeObjectHeapLimitInChars) 204if (GetMaxCharCountOrThrowIfHuge(encoding, stream) >= LargeObjectHeapLimitInChars)
Text\SourceTextWriter.cs (1)
16if (length < SourceText.LargeObjectHeapLimitInChars)