424 references to SymbolDisplayMiscellaneousOptions
Microsoft.CodeAnalysis (56)
CodeGen\CompilationTestData.cs (5)
105SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 106SymbolDisplayMiscellaneousOptions.ExpandValueTuple | 107SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 108SymbolDisplayMiscellaneousOptions.UseAsterisksInMultiDimensionalArrays | 109SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName);
SymbolDisplay\SymbolDisplayExtensions.cs (3)
89/// Determines if a flag is set on the <see cref="SymbolDisplayMiscellaneousOptions"/> enum. 94internal static bool IncludesOption(this SymbolDisplayMiscellaneousOptions options, SymbolDisplayMiscellaneousOptions flag)
SymbolDisplay\SymbolDisplayFormat.cs (48)
31SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 32SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 33SymbolDisplayMiscellaneousOptions.UseAsterisksInMultiDimensionalArrays | 34SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName | 35SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier, 58SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 59SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 60SymbolDisplayMiscellaneousOptions.UseAsterisksInMultiDimensionalArrays | 61SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName | 62SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier, 93SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 94SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 95SymbolDisplayMiscellaneousOptions.UseAsterisksInMultiDimensionalArrays | 96SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName); 126SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 127SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 128SymbolDisplayMiscellaneousOptions.UseAsterisksInMultiDimensionalArrays | 129SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName); 145SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 146SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 169SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 170SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 171SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier); 199SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 200SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName | 201SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier, 213AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier). 232miscellaneousOptions: SymbolDisplayMiscellaneousOptions.ExpandValueTuple); 244SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 245SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 246SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier); 260SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 261SymbolDisplayMiscellaneousOptions.ExpandValueTuple, 273miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers, 330public SymbolDisplayMiscellaneousOptions MiscellaneousOptions { get; } 385SymbolDisplayMiscellaneousOptions miscellaneousOptions = default(SymbolDisplayMiscellaneousOptions)) 417SymbolDisplayMiscellaneousOptions miscellaneousOptions = default(SymbolDisplayMiscellaneousOptions)) 434/// Creates a copy of the SymbolDisplayFormat but with replaced set of <see cref="SymbolDisplayMiscellaneousOptions"/>. 439/// <returns>A duplicate of the SymbolDisplayFormat, with a replaced set of <see cref="SymbolDisplayMiscellaneousOptions"/>.</returns> 440public SymbolDisplayFormat WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions options) 459/// Creates a copy of the SymbolDisplayFormat but with an additional set of <see cref="SymbolDisplayMiscellaneousOptions"/>. 464/// <returns>A duplicate of the SymbolDisplayFormat, with an additional set of <see cref="SymbolDisplayMiscellaneousOptions"/>.</returns> 465public SymbolDisplayFormat AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions options) 471/// Creates a copy of the SymbolDisplayFormat without the specified <see cref="SymbolDisplayMiscellaneousOptions"/>. 476/// <returns>A duplicate of the SymbolDisplayFormat, without the specified <see cref="SymbolDisplayMiscellaneousOptions"/>.</returns> 477public SymbolDisplayFormat RemoveMiscellaneousOptions(SymbolDisplayMiscellaneousOptions options)
Microsoft.CodeAnalysis.CodeStyle (4)
INamespaceOrTypeSymbolExtensions.cs (2)
19miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes | SymbolDisplayMiscellaneousOptions.ExpandNullable);
SymbolDisplayFormats.cs (2)
28SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 29SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
AbstractAddParameterCodeFixProvider.cs (1)
426miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Microsoft.CodeAnalysis.CSharp (25)
Binder\Binder_Expressions.cs (2)
8307SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 8308SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
SymbolDisplay\SymbolDisplayVisitor.cs (1)
29_escapeKeywordIdentifiers = format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers);
SymbolDisplay\SymbolDisplayVisitor.Types.cs (10)
87if (format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier) && 95if (format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier) && 109bool insertStars = format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.UseAsterisksInMultiDimensionalArrays); 204if (format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.UseSpecialTypes) || 214if (!format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.ExpandNullable)) 309if (format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.ExpandValueTuple)) 368if (format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName) && 535if (this.format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.CollapseTupleTypes)) 869if (format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier)) 876if (format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier))
SymbolDisplay\SymbolDisplayVisitor_Constants.cs (1)
27if (!format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral))
SymbolDisplay\SymbolDisplayVisitor_Minimal.cs (1)
268format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.RemoveAttributeSuffix) &&
Symbols\Symbol.cs (2)
873.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier 874| SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier)
Symbols\TypeWithAnnotations.cs (8)
65miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes | SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier); 70miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes | SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier | SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier); 284format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier)) 297format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier) && 303format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier) &&
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
SymbolKey\SymbolKeyTests.cs (1)
172Assert.Equal("global::ConditionalWeakTableTest<TKey!, TValue!>.CreateValueCallback!", parameterType.ToDisplayString(SymbolDisplayFormat.FullyQualifiedFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier)));
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (10)
Attributes\AttributeTests_NativeInteger.cs (1)
23private static readonly SymbolDisplayFormat FormatWithSpecialTypes = SymbolDisplayFormat.TestFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Attributes\AttributeTests_Nullable.cs (3)
4197WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier | SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier | SymbolDisplayMiscellaneousOptions.UseSpecialTypes).
Emit\NumericIntPtrTests.cs (6)
6213Assert.Equal(expectedSymbol, symbolInfo.Symbol?.ToDisplayString(SymbolDisplayFormat.TestFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes))); 6589Assert.Equal(expectedSymbol, symbolInfo.Symbol?.ToDisplayString(SymbolDisplayFormat.TestFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes))); 6821Assert.Equal(expectedSymbol, symbolInfo.Symbol?.ToDisplayString(SymbolDisplayFormat.TestFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes))); 8094Assert.Equal(expectedSymbol, symbolInfo.Symbol?.ToDisplayString(SymbolDisplayFormat.TestFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes))); 10349Assert.Equal("nint", type.ToDisplayString(SymbolDisplayFormat.TestFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes))); 10358Assert.Equal("nuint", type.ToDisplayString(SymbolDisplayFormat.TestFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes)));
Microsoft.CodeAnalysis.CSharp.Features (14)
Completion\CompletionProviders\CrefCompletionProvider.cs (4)
39SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.ExpandValueTuple); 42QualifiedCrefFormat.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 45SymbolDisplayFormat.MinimallyQualifiedFormat.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.ExpandValueTuple);
Completion\CompletionProviders\PartialTypeCompletionProvider.cs (2)
37SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 38SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
DocumentationComments\CSharpDocumentationCommentSnippetService.cs (2)
37SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 38SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
ImplementInterface\AbstractChangeImplementationCodeRefactoringProvider.cs (1)
37miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
LanguageServices\CSharpSymbolDisplayService.SymbolDescriptionBuilder.cs (1)
29.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName)
NavigationBar\CSharpNavigationBarItemService.cs (3)
39miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 40SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral | 41SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier);
SignatureHelp\AbstractCSharpSignatureHelpProvider.cs (1)
27.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral);
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (18)
Semantics\NativeIntegerTests.cs (4)
9706Assert.Equal(expectedSymbol, symbolInfo.Symbol?.ToDisplayString(SymbolDisplayFormat.TestFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes))); 10083Assert.Equal(expectedSymbol, symbolInfo.Symbol?.ToDisplayString(SymbolDisplayFormat.TestFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes))); 10308Assert.Equal(expectedSymbol, symbolInfo.Symbol?.ToDisplayString(SymbolDisplayFormat.TestFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes))); 12357Assert.Equal(expectedSymbol, symbolInfo.Symbol?.ToDisplayString(SymbolDisplayFormat.TestFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes)));
Semantics\NullableReferenceTypesTests.cs (14)
73326miscellaneousOptions: SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier))); 73330miscellaneousOptions: SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier))); 73334miscellaneousOptions: SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier))); 73399miscellaneousOptions: SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier))); 93931~(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier | SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier)))); 109922Assert.Equal("A<T> where T : class!", a.ToDisplayString(SymbolDisplayFormat.TestFormatWithConstraints.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier))); 109941Assert.Equal("A<T> where T : class", a.ToDisplayString(SymbolDisplayFormat.TestFormatWithConstraints.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier))); 109965Assert.Equal("A<T> where T : class?", a.ToDisplayString(SymbolDisplayFormat.TestFormatWithConstraints.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier))); 109966Assert.Equal("A<T> where T : class", a.ToDisplayString(SymbolDisplayFormat.TestFormatWithConstraints.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier))); 109987Assert.Equal("A<T> where T : class?", a.ToDisplayString(SymbolDisplayFormat.TestFormatWithConstraints.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier))); 109988Assert.Equal("A<T> where T : class", a.ToDisplayString(SymbolDisplayFormat.TestFormatWithConstraints.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier))); 110020Assert.Equal("A<T> where T : unmanaged!", a.ToDisplayString(SymbolDisplayFormat.TestFormatWithConstraints.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier))); 110041Assert.Equal("A<T> where T : unmanaged", a.ToDisplayString(SymbolDisplayFormat.TestFormatWithConstraints.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier)));
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (107)
SymbolDisplay\SymbolDisplayTests.cs (106)
262miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 300miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 358miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 423miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 479miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 547miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 612miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 668miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 765miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 804miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 837miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 876miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 911miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 946miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 981miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 1016miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 1070miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 1111miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 1278miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 1304miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseAsterisksInMultiDimensionalArrays); 2486miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 2881SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 2882SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 2883SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName | 2884SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier | 2885SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral); 2903new SymbolDisplayFormat(miscellaneousOptions: SymbolDisplayMiscellaneousOptions.RemoveAttributeSuffix), 2926new SymbolDisplayFormat(miscellaneousOptions: SymbolDisplayMiscellaneousOptions.RemoveAttributeSuffix), 2947new SymbolDisplayFormat(miscellaneousOptions: SymbolDisplayMiscellaneousOptions.RemoveAttributeSuffix), 2999miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes, 3128miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes, 3189miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes, 3250miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes, 3405SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 3406SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 3459SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 3460SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 3511SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 3512SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 3559SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 3560SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 3640SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 3641SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 3714SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 3715SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 3826SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 3827SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 3936SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 3937SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 4040SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 4041SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 4535miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 5070var format = new SymbolDisplayFormat(memberOptions: SymbolDisplayMemberOptions.IncludeType, miscellaneousOptions: SymbolDisplayMiscellaneousOptions.CollapseTupleTypes); 5170miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 5221miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 5271miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 5370miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 5574miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 5790miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes | SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier); 5793.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier | SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier) 5862miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 5865.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier) 5929miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 5930var formatWithNullableModifier = formatWithoutModifiers.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier); 5931var formatWithBothModifiers = formatWithNullableModifier.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier); 6014Assert.False(formatWithoutAllowDefaultLiteral.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral)); 6015var formatWithAllowDefaultLiteral = formatWithoutAllowDefaultLiteral.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral); 6016Assert.True(formatWithAllowDefaultLiteral.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral)); 6050miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 6051var formatWithNullableModifier = formatWithoutModifiers.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier); 6052var formatWithBothModifiers = formatWithNullableModifier.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier); 6089miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes | SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier); 6141Assert.False(formatWithoutAllowDefaultLiteral.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral)); 6142var formatWithAllowDefaultLiteral = formatWithoutAllowDefaultLiteral.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral); 6143Assert.True(formatWithAllowDefaultLiteral.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral)); 6185Assert.False(formatWithoutAllowDefaultLiteral.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral)); 6186var formatWithAllowDefaultLiteral = formatWithoutAllowDefaultLiteral.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral); 6187Assert.True(formatWithAllowDefaultLiteral.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral)); 6212miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 6215SymbolDisplayMiscellaneousOptions.ExpandValueTuple); 6323miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes, 6849.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 6934.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 7194.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 7347.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 7865method.ToDisplayParts(formatWithoutOptions.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes)), 8072miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes, 8609SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 8610SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 8611SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName | 8612SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier | 8613SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral | 8614SymbolDisplayMiscellaneousOptions.CollapseTupleTypes);
Symbols\Source\MethodTests.cs (1)
1641miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers)));
Microsoft.CodeAnalysis.CSharp.Test.Utilities (3)
CSharpTestBase.cs (2)
1344.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier | SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier)
SymbolUtilities.cs (1)
98format = format.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNotNullableReferenceTypeModifier)
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Simplification\CSharpSimplificationService.Expander.cs (2)
40miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.ExpandNullable,
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
InstructionDecoder.cs (1)
24miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Microsoft.CodeAnalysis.Features (38)
AbstractAddParameterCodeFixProvider.cs (1)
426miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Completion\Providers\AbstractOverrideCompletionProvider.ItemGetter.cs (1)
28.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier);
Completion\Providers\AbstractPartialMethodCompletionProvider.cs (2)
29SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 30SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Debugging\AbstractBreakpointResolver.cs (2)
55SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 56SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
50SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 67SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
ExtractMethod\MethodExtractor.VariableSymbol.cs (3)
175miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers)); 228miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers)); 340miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers));
FindUsages\FindUsagesHelpers.cs (2)
75SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 76SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
GenerateFromMembers\AbstractGenerateFromMembersCodeRefactoringProvider.cs (1)
126miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
ImplementInterface\AbstractImplementInterfaceService.DisposePatternCodeAction.cs (1)
37miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
InheritanceMargin\AbstractInheritanceMarginService_Helpers.cs (4)
40SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 41SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 42SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName | 43SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier);
InlineHints\AbstractInlineTypeHintsService.cs (3)
29miscellaneousOptions: SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral | SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier | SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
LanguageServices\AnonymousTypeDisplayService\AbstractStructuralTypeDisplayService.cs (1)
17SymbolDisplayMiscellaneousOptions.CollapseTupleTypes);
LanguageServices\SymbolDisplayService\AbstractSymbolDisplayService.AbstractSymbolDescriptionBuilder.cs (13)
39SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 40SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 41SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName); 66SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 67SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 68SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName | 69SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier | 70SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral | 71SymbolDisplayMiscellaneousOptions.CollapseTupleTypes); 78miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.CollapseTupleTypes, 515var underlyingTypeDisplayParts = symbol.EnumUnderlyingType.ToDisplayParts(s_descriptionStyle.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes)); 524var style = s_descriptionStyle.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Shared\Extensions\ISymbolExtensions_2.cs (2)
238SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 239SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Microsoft.CodeAnalysis.VisualBasic (10)
SymbolDisplay\CustomSymbolDisplayFormatter.vb (2)
26miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers Or 27SymbolDisplayMiscellaneousOptions.UseSpecialTypes)
SymbolDisplay\SymbolDisplayVisitor.Types.vb (6)
46Dim insertStars As Boolean = format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.UseAsterisksInMultiDimensionalArrays) 94If format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.UseSpecialTypes) Then 99If Not format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.ExpandNullable) Then 245If format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName) AndAlso 315If format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.ExpandValueTuple) Then 378If Me.format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.CollapseTupleTypes) Then
SymbolDisplay\SymbolDisplayVisitor.vb (1)
31Me._escapeKeywordIdentifiers = format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers)
SymbolDisplay\SymbolDisplayVisitor_Minimal.vb (1)
190If format.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.RemoveAttributeSuffix) AndAlso IsDerivedFromAttributeType(symbol) Then
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (2)
ExpressionSyntaxExtensions.vb (2)
22miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers, 30miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers,
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler (2)
CompilationContext.vb (2)
28miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers Or SymbolDisplayMiscellaneousOptions.UseSpecialTypes)
Microsoft.CodeAnalysis.VisualBasic.Features (11)
CodeLens\VisualBasicDisplayInfoService.vb (1)
27SymbolDisplayMiscellaneousOptions.UseSpecialTypes)
Completion\CompletionProviders\CrefCompletionProvider.vb (2)
32miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 35SymbolDisplayFormat.MinimallyQualifiedFormat.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.ExpandValueTuple)
Completion\CompletionProviders\PartialTypeCompletionProvider.vb (3)
30SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers Or 31SymbolDisplayMiscellaneousOptions.UseSpecialTypes, 38_insertionTextFormatWithGenerics.RemoveMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers)
LanguageServices\VisualBasicSymbolDisplayService.SymbolDescriptionBuilder.vb (1)
19.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName) _
NavigationBar\VisualBasicNavigationBarItemService.vb (1)
32miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes)
SignatureHelp\AbstractOrdinaryMethodSignatureHelpProvider.vb (1)
43format = format.WithMiscellaneousOptions(format.MiscellaneousOptions And (Not SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers))
SignatureHelp\GenericNameSignatureHelpProvider.NamedType.vb (2)
13miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers Or SymbolDisplayMiscellaneousOptions.UseSpecialTypes)
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (53)
SymbolDisplay\SymbolDisplayTests.vb (53)
362miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 380miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 422miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 484miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 552miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 608miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 679miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 750miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 816miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 875miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 971miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 1031miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers) 1051miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers) 1069miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers) 1090miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers) 1120miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers) 1148miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers Or SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 1175miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers) 1190miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers) 1235miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers) 1251miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers) 1278miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers) 1453miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers) 1480miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 1512miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.None) 3094miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes, 3472SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 3529SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 3915TestSymbolDescription(text, findSymbol, New SymbolDisplayFormat(miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.RemoveAttributeSuffix), 3941New SymbolDisplayFormat(miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.RemoveAttributeSuffix), 3966New SymbolDisplayFormat(miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.RemoveAttributeSuffix), 3990New SymbolDisplayFormat(miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.RemoveAttributeSuffix), 4744miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 4934Assert.False(formatWithoutAllowDefaultLiteral.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral)) 4935Dim formatWithAllowDefaultLiteral = formatWithoutAllowDefaultLiteral.AddMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral) 4936Assert.True(formatWithAllowDefaultLiteral.MiscellaneousOptions.IncludesOption(SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral)) 4981Dim format = New SymbolDisplayFormat(memberOptions:=SymbolDisplayMemberOptions.IncludeType, miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.CollapseTupleTypes) 5071miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes), 5116miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes), 5164miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 5202miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 5324miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 5510miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers Or SymbolDisplayMiscellaneousOptions.UseSpecialTypes, 5762SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers Or 5763SymbolDisplayMiscellaneousOptions.UseSpecialTypes Or 5764SymbolDisplayMiscellaneousOptions.UseErrorTypeSymbolName Or 5765SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier Or 5766SymbolDisplayMiscellaneousOptions.AllowDefaultLiteral Or 5767SymbolDisplayMiscellaneousOptions.CollapseTupleTypes) 5888miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 5891SymbolDisplayMiscellaneousOptions.ExpandValueTuple)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (2)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ExpressionSyntaxExtensions.vb\ExpressionSyntaxExtensions.vb (2)
22miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers, 30miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers,
Microsoft.CodeAnalysis.Workspaces (5)
INamespaceOrTypeSymbolExtensions.cs (2)
19miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes | SymbolDisplayMiscellaneousOptions.ExpandNullable);
Rename\ConflictEngine\ConflictResolver.cs (1)
37miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers);
SymbolDisplayFormats.cs (2)
28SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 29SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Microsoft.VisualStudio.LanguageServices (27)
CallHierarchy\CallHierarchyItem.cs (2)
69SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 77SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
ChangeSignature\AddParameterDialogViewModel.cs (1)
54miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
ChangeSignature\ChangeSignatureDialogViewModel.cs (6)
308SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 309SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 310SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier, 322SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 323SymbolDisplayMiscellaneousOptions.UseSpecialTypes | 324SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier,
F1Help\AbstractHelpContextService.cs (4)
26miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers); 34SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | 35SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 41miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Library\ObjectBrowser\AbstractDescriptionBuilder.cs (4)
26miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 113var miscellaneousOptions = useSpecialTypes 114? SymbolDisplayMiscellaneousOptions.UseSpecialTypes 115: SymbolDisplayMiscellaneousOptions.ExpandNullable;
Library\ObjectBrowser\AbstractListItemFactory.cs (3)
36miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 46miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 56miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Library\ObjectBrowser\Extensions.cs (1)
27miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Utilities\SymbolViewModel.cs (6)
24miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes | SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier); 31miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes | SymbolDisplayMiscellaneousOptions.IncludeNullableReferenceTypeModifier);
Microsoft.VisualStudio.LanguageServices.CSharp (13)
CodeModel\CSharpCodeModelService.cs (8)
60miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.ExpandNullable); 66miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 70miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers, 78miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers, 86miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers | SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
ObjectBrowser\CSharpLibraryService.cs (1)
28miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
ObjectBrowser\ListItemFactory.cs (2)
20miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 28miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Progression\CSharpProgressionLanguageService.cs (2)
38miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes); 48miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Microsoft.VisualStudio.LanguageServices.Implementation (2)
CodeModel\CodeModelExtensions.cs (1)
20miscellaneousOptions: SymbolDisplayMiscellaneousOptions.EscapeKeywordIdentifiers);
CodeModel\InternalElements\CodeClass.cs (1)
24miscellaneousOptions: SymbolDisplayMiscellaneousOptions.UseSpecialTypes);
Microsoft.VisualStudio.LanguageServices.VisualBasic (17)
CodeModel\VisualBasicCodeModelService.vb (7)
62miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.ExpandNullable) 68miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 73miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.ExpandNullable, 81miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.ExpandNullable, 88miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.ExpandNullable Or SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 95miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes)
CodeModel\VisualBasicCodeModelService_Prototype.vb (4)
22miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.ExpandNullable Or SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 29miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.ExpandNullable Or SymbolDisplayMiscellaneousOptions.UseSpecialTypes)
Help\VisualBasicHelpContextService.Visitor.vb (1)
686result = "vb." + typeInfo.ToDisplayString(TypeFormat.WithMiscellaneousOptions(SymbolDisplayMiscellaneousOptions.UseSpecialTypes))
ObjectBrowser\ListItemFactory.vb (2)
18miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 26miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes)
ObjectBrowser\VisualBasicLibraryService.vb (1)
26miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes)
Progression\VisualBasicProgressionLanguageService.vb (2)
65miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes) 75miscellaneousOptions:=SymbolDisplayMiscellaneousOptions.UseSpecialTypes)