14 references to RenameSymbol
Microsoft.CodeAnalysis.EditorFeatures (14)
InlineRename\AbstractEditorInlineRenameService.InlineRenameLocationSet.cs (1)
62
_renameInfo.
RenameSymbol
, _renameInfo.GetFinalSymbolName(replacementText), cancellationToken).ConfigureAwait(false);
InlineRename\AbstractEditorInlineRenameService.SymbolRenameInfo.cs (13)
64
this.HasOverloads = RenameUtilities.GetOverloadedSymbols(this.
RenameSymbol
).Any();
84
var searchName = this.
RenameSymbol
.Name;
89
searchName = _info.GetWithoutAttributeSuffix(this.
RenameSymbol
.Name);
124
public string DisplayName =>
RenameSymbol
.Name;
125
public string FullDisplayName =>
RenameSymbol
.ToDisplayString();
126
public Glyph Glyph =>
RenameSymbol
.GetGlyph();
135
solution, this.
RenameSymbol
, options, cancellationToken).ConfigureAwait(false);
142
return _refactorNotifyServices.TryOnBeforeGlobalSymbolRenamed(workspace, changedDocumentIDs,
RenameSymbol
,
148
return _refactorNotifyServices.TryOnAfterGlobalSymbolRenamed(workspace, changedDocumentIDs,
RenameSymbol
,
154
if (
RenameSymbol
.Kind == SymbolKind.NamedType &&
157
if (
RenameSymbol
.Locations.Length > 1)
165
var symbolSourceDocument = this.Document.Project.Solution.GetDocument(
RenameSymbol
.Locations.Single().SourceTree);
166
if (symbolSourceDocument != null && WorkspacePathUtilities.TypeNameMatchesDocumentName(symbolSourceDocument,
RenameSymbol
.Name))