4 types derived from IndentedTextWriter
Microsoft.AspNetCore.Http.RequestDelegateGenerator (1)
Microsoft.AspNetCore.OpenApi.SourceGenerators (1)
Microsoft.Extensions.Validation.ValidationsGenerator (1)
System.CodeDom (1)
12 instantiations of IndentedTextWriter
Microsoft.Interop.ComInterfaceGenerator (2)
Microsoft.Maui.Controls.BindingSourceGen (1)
Microsoft.ML.Core (1)
Microsoft.ML.Data (1)
Microsoft.ML.Maml (1)
Microsoft.ML.Predictor.Tests (2)
Microsoft.ML.Tests (1)
Microsoft.ML.Transforms (1)
System.Text.RegularExpressions.Generator (2)
74 references to IndentedTextWriter
Microsoft.Interop.ComInterfaceGenerator (6)
Microsoft.Interop.SourceGeneration (3)
Microsoft.Maui.Controls.BindingSourceGen (1)
Microsoft.ML.Core (8)
Microsoft.ML.Data (8)
Commands\ShowSchemaCommand.cs (8)
132var itw = new IndentedTextWriter(writer, " ");
183private static void ShowMetadata(IndentedTextWriter itw, DataViewSchema schema, int col, bool showVals)
207private static void ShowMetadataValue(IndentedTextWriter itw, DataViewSchema schema, int col, string kind, DataViewType type)
222Action<IndentedTextWriter, DataViewSchema, int, string, DataViewType> del = ShowMetadataValue<int>;
227private static void ShowMetadataValue<T>(IndentedTextWriter itw, DataViewSchema schema, int col, string kind, DataViewType type)
247private static void ShowMetadataValueVec(IndentedTextWriter itw, DataViewSchema schema, int col, string kind, VectorDataViewType type)
261Action<IndentedTextWriter, DataViewSchema, int, string, VectorDataViewType> del = ShowMetadataValueVec<int>;
266private static void ShowMetadataValueVec<T>(IndentedTextWriter itw, DataViewSchema schema, int col, string kind, VectorDataViewType type)
Microsoft.ML.Maml (8)
HelpCommand.cs (8)
112using (var writer = new IndentedTextWriter(sw, " "))
133private void ShowHelp(IndentedTextWriter writer, int? columns = null)
191private void ShowAllHelp(IndentedTextWriter writer, int? columns = null)
225private void ShowUsage(IndentedTextWriter writer, string kind, string summary, string loadName,
246private void ShowComponents(IndentedTextWriter writer)
312private void ShowAliases(IndentedTextWriter writer, IReadOnlyList<string> names)
327private void ListKinds(IndentedTextWriter writer)
341private void ShowFormattedSummary(IndentedTextWriter writer, string summary, int? columns)
Microsoft.ML.Predictor.Tests (10)
CmdLine\CmdLine.cs (9)
85Action<IndentedTextWriter> init = null;
86Action<IndentedTextWriter, string> action = null;
99private static void Init(IndentedTextWriter wrt, object defaults)
109private static void Process(IndentedTextWriter wrt, string text, ArgsBase defaults)
142public void CallInit(IndentedTextWriter wrt)
150public void CallProcess(IndentedTextWriter wrt, string text)
340private void Run(string dir, string name, Action<IndentedTextWriter> init,
341Action<IndentedTextWriter, string> action)
350var wrt = new IndentedTextWriter(writer, " ");
Microsoft.ML.Tests (3)
Microsoft.ML.Transforms (3)
netstandard (1)
System (1)
System.IO (1)
System.Private.CoreLib (2)
System.Runtime (1)
System.Runtime.Extensions (1)
System.Text.RegularExpressions.Generator (17)
RegexGenerator.Emitter.cs (15)
61private static void EmitRegexPartialMethod(RegexMethod regexMethod, IndentedTextWriter writer)
118IndentedTextWriter writer, RegexMethod rm, string reason, LanguageVersion langVer)
152IndentedTextWriter writer, RegexMethod rm, string runnerFactoryImplementation, bool allowUnsafe)
209static void AppendHashtableContents(IndentedTextWriter writer, IEnumerable<DictionaryEntry> contents)
232private static void EmitRegexDerivedTypeRunnerFactory(IndentedTextWriter writer, RegexMethod rm, Dictionary<string, string[]> requiredHelpers, bool checkOverflow)
752private static (bool NeedsTryFind, bool NeedsTryMatch) EmitScan(IndentedTextWriter writer, RegexMethod rm)
838private static void EmitTryFindNextPossibleStartingPosition(IndentedTextWriter writer, RegexMethod rm, Dictionary<string, string[]> requiredHelpers, bool checkOverflow)
1588private static void EmitTryMatchAtCurrentPosition(IndentedTextWriter writer, RegexMethod rm, Dictionary<string, string[]> requiredHelpers, bool checkOverflow)
5021private static void EmitTimeoutCheckIfNeeded(IndentedTextWriter writer, RegexMethod rm, bool appendNewLineIfTimeoutEmitted = true)
5521private static void InsertAdditionalDeclarations(IndentedTextWriter writer, HashSet<string> declarations, int position, int indent)
5530tmp.Append(IndentedTextWriter.DefaultTabString);
5855private static FinishEmitBlock EmitBlock(IndentedTextWriter writer, string? clause, bool faux = false)
5866private static void EmitAdd(IndentedTextWriter writer, string variable, int value)
5881private readonly struct FinishEmitBlock(IndentedTextWriter writer, bool faux) : IDisposable
5883private readonly IndentedTextWriter _writer = writer;