54 references to IsAbsolute
Microsoft.CodeAnalysis.CodeStyle.LegacyTestFramework.UnitTestUtilities (3)
AbstractCodeActionOrUserDiagnosticTest.cs (3)
202if (!PathUtilities.IsAbsolute(project.FilePath)) 215if (!PathUtilities.IsAbsolute(document.FilePath)) 239Assert.True(PathUtilities.IsAbsolute(project.FilePath));
Microsoft.CodeAnalysis.EditorFeatures.DiagnosticsTests.Utilities (3)
CodeActions\AbstractCodeActionOrUserDiagnosticTest.cs (3)
202if (!PathUtilities.IsAbsolute(project.FilePath)) 215if (!PathUtilities.IsAbsolute(document.FilePath)) 239Assert.True(PathUtilities.IsAbsolute(project.FilePath));
Microsoft.CodeAnalysis.Features (10)
Completion\FileSystemCompletionHelper.cs (7)
43Debug.Assert(searchPaths.All(PathUtilities.IsAbsolute)); 44Debug.Assert(baseDirectory == null || PathUtilities.IsAbsolute(baseDirectory)); 61Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 68Debug.Assert(PathUtilities.IsAbsolute(fullDirectoryPath)); 75Debug.Assert(PathUtilities.IsAbsolute(fullDirectoryPath)); 82Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 216Debug.Assert(PathUtilities.IsAbsolute(fullDirectoryPath));
Completion\Providers\Scripting\AbstractDirectivePathCompletionProvider.cs (2)
192if (!PathUtilities.IsAbsolute(result)) 195Debug.Assert(result == null || PathUtilities.IsAbsolute(result));
EditAndContinue\Extensions.cs (1)
92if (!PathUtilities.IsAbsolute(textDocumentState.FilePath))
Microsoft.CodeAnalysis.Workspaces (26)
CompilerPathUtilities.cs (1)
19if (!PathUtilities.IsAbsolute(path))
FileUtilities.cs (12)
47Debug.Assert(baseDirectory == null || searchPaths != null || PathUtilities.IsAbsolute(baseDirectory)); 60Debug.Assert(PathUtilities.IsAbsolute(combinedPath)); 71Debug.Assert(PathUtilities.IsAbsolute(combinedPath)); 84Debug.Assert(PathUtilities.IsAbsolute(combinedPath)); 101Debug.Assert(baseDirectory == null || PathUtilities.IsAbsolute(baseDirectory)); 198Debug.Assert(PathUtilities.IsAbsolute(resolvedBasePath)); 243Debug.Assert(PathUtilities.IsAbsolute(path)); 270Debug.Assert(PathUtilities.IsAbsolute(path)); 284Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 302Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 368Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 386Debug.Assert(PathUtilities.IsAbsolute(fullPath));
PathUtilities.cs (3)
304if (IsAbsolute(path)) 402Debug.Assert(IsAbsolute(root)); 473return IsAbsolute(path) ? path : CombinePathsUnchecked(root, path);
ProjectExtensions.cs (3)
54if (!PathUtilities.IsAbsolute(diagnosticFilePath)) 87if (!PathUtilities.IsAbsolute(solutionOrProjectFilePath)) 100Debug.Assert(PathUtilities.IsAbsolute(analyzerConfigPath));
RelativePathResolver.cs (2)
31Debug.Assert(searchPaths.All(PathUtilities.IsAbsolute)); 52Debug.Assert(PathUtilities.IsAbsolute(fullPath));
Serialization\SerializationExtensions.cs (3)
50if (!PathUtilities.IsAbsolute(filePath)) 75if (PathUtilities.IsAbsolute(info.FilePath)) 81if (PathUtilities.IsAbsolute(info.OutputFilePath))
Utilities\Documentation\XmlDocumentationProvider.cs (1)
156Debug.Assert(PathUtilities.IsAbsolute(filePath));
Workspace\Solution\ProjectState.cs (1)
275if (!PathUtilities.IsAbsolute(_projectInfo.FilePath))
Microsoft.CodeAnalysis.Workspaces.MSBuild (2)
MSBuild\MSBuildProjectLoader.Worker.cs (1)
428if (PathUtilities.IsAbsolute(path))
MSBuild\ProjectFile\ProjectFile.cs (1)
272if (!PathUtilities.IsAbsolute(filePath))
Microsoft.VisualStudio.LanguageServices (4)
FileKey.cs (1)
30Debug.Assert(PathUtilities.IsAbsolute(fullPath));
ProjectSystem\CPS\IWorkspaceProjectContextFactory.cs (1)
110if (!PathUtilities.IsAbsolute(value))
ProjectSystem\Legacy\AbstractLegacyProject.cs (1)
268if (!PathUtilities.IsAbsolute(outputDirectory))
ProjectSystem\VisualStudioAddSolutionItemService.cs (1)
53PathUtilities.IsAbsolute(filePath) &&
Microsoft.VisualStudio.LanguageServices.CSharp (1)
ProjectSystemShim\CSharpProjectShim.ICSInputSet.cs (1)
46if (PathUtilities.IsAbsolute(filename))
Microsoft.VisualStudio.LanguageServices.Implementation (4)
ProjectSystem\CPS\CPSProject_IWorkspaceProjectContext.cs (2)
115if (!PathUtilities.IsAbsolute(value)) 185if (!PathUtilities.IsAbsolute(value))
ProjectSystem\CPS\CPSProjectFactory.cs (2)
220if (!PathUtilities.IsAbsolute(path)) 225if (!PathUtilities.IsAbsolute(path))
Microsoft.VisualStudio.LanguageServices.VisualBasic (1)
ProjectSystemShim\VisualBasicProject.vb (1)
324If PathUtilities.IsAbsolute(pCompilerOptions.wszOutputPath) Then