33 references to Name
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (3)
Workspaces\TestWorkspace.cs (3)
339text.ToString(), info.Name, info.SourceCodeKind,
363var hostDocument = new TestHostDocument(text.ToString(), info.Name, id: info.Id, exportProvider: ExportProvider);
385var hostDocument = new TestHostDocument(text.ToString(), info.Name, id: info.Id, filePath: info.FilePath, folders: info.Folders, exportProvider: ExportProvider);
Microsoft.CodeAnalysis.Workspaces (4)
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
Microsoft.CodeAnalysis.Workspaces.UnitTests (14)
CommandLineProject\CommandLineProjectTests.cs (10)
29Assert.Equal("goo.cs", docInfo.Name);
60Assert.Equal("goo.cs", docInfo.Name);
72Assert.Equal("goo.cs", docInfo.Name);
83Assert.Equal("goo.cs", docInfo.Name);
95Assert.Equal("goo.cs", docInfo.Name);
106Assert.Equal("goo.cs", docInfo.Name);
117Assert.Equal("goo.cs", docInfo.Name);
128Assert.Equal("goo.cs", firstDoc.Name);
129Assert.Equal("bar.cs", secondDoc.Name);
143Assert.Equal("goo.cs", firstDoc.Name);
Microsoft.VisualStudio.LanguageServices (10)
ProjectSystem\VisualStudioWorkspaceImpl.cs (6)
791AddDocumentToFolder(project, info.Id, SpecializedCollections.SingletonEnumerable(AppCodeFolderName), info.Name, documentKind, initialText, info.FilePath);
795AddDocumentToFolder(project, info.Id, folders, info.Name, documentKind, initialText, info.FilePath);
799AddDocumentToProject(project, info.Id, info.Name, documentKind, initialText, info.FilePath);
1171if (document.Name != updatedInfo.Name)
1203Path.GetFileNameWithoutExtension(updatedInfo.Name),
1204Path.GetExtension(updatedInfo.Name));