21 references to IsAbsolute
Microsoft.CodeAnalysis.CodeStyle (18)
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);
RelativePathResolver.cs (2)
31Debug.Assert(searchPaths.All(PathUtilities.IsAbsolute)); 52Debug.Assert(PathUtilities.IsAbsolute(fullPath));
Microsoft.CodeAnalysis.CodeStyle.Fixes (3)
ProjectExtensions.cs (3)
54if (!PathUtilities.IsAbsolute(diagnosticFilePath)) 87if (!PathUtilities.IsAbsolute(solutionOrProjectFilePath)) 100Debug.Assert(PathUtilities.IsAbsolute(analyzerConfigPath));