17 references to IsAbsolute
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (17)
MSBuild\ProjectFile\ProjectInstanceReader.cs (1)
263if (!PathUtilities.IsAbsolute(filePath))
src\roslyn\src\Compilers\Core\Portable\FileSystem\FileUtilities.cs (13)
52Debug.Assert(baseDirectory == null || searchPaths != null || PathUtilities.IsAbsolute(baseDirectory)); 65Debug.Assert(PathUtilities.IsAbsolute(combinedPath)); 76Debug.Assert(PathUtilities.IsAbsolute(combinedPath)); 89Debug.Assert(PathUtilities.IsAbsolute(combinedPath)); 106Debug.Assert(baseDirectory == null || PathUtilities.IsAbsolute(baseDirectory)); 203Debug.Assert(PathUtilities.IsAbsolute(resolvedBasePath)); 253Debug.Assert(PathUtilities.IsAbsolute(path)); 280if (!PathUtilities.IsAbsolute(path)) 297Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 315Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 399Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 417Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 440Debug.Assert(PathUtilities.IsAbsolute(fullPath));
src\roslyn\src\Compilers\Core\Portable\FileSystem\PathUtilities.cs (3)
330if (IsAbsolute(path)) 428Debug.Assert(IsAbsolute(root)); 499return IsAbsolute(path) ? path : CombinePathsUnchecked(root, path);