21 references to IsAbsolute
Microsoft.CodeAnalysis.CodeStyle (18)
CompilerPathUtilities.cs (1)
19
if (!PathUtilities.
IsAbsolute
(path))
FileUtilities.cs (12)
47
Debug.Assert(baseDirectory == null || searchPaths != null || PathUtilities.
IsAbsolute
(baseDirectory));
60
Debug.Assert(PathUtilities.
IsAbsolute
(combinedPath));
71
Debug.Assert(PathUtilities.
IsAbsolute
(combinedPath));
84
Debug.Assert(PathUtilities.
IsAbsolute
(combinedPath));
101
Debug.Assert(baseDirectory == null || PathUtilities.
IsAbsolute
(baseDirectory));
198
Debug.Assert(PathUtilities.
IsAbsolute
(resolvedBasePath));
243
Debug.Assert(PathUtilities.
IsAbsolute
(path));
270
Debug.Assert(PathUtilities.
IsAbsolute
(path));
284
Debug.Assert(PathUtilities.
IsAbsolute
(fullPath));
302
Debug.Assert(PathUtilities.
IsAbsolute
(fullPath));
368
Debug.Assert(PathUtilities.
IsAbsolute
(fullPath));
386
Debug.Assert(PathUtilities.
IsAbsolute
(fullPath));
PathUtilities.cs (3)
304
if (
IsAbsolute
(path))
402
Debug.Assert(
IsAbsolute
(root));
473
return
IsAbsolute
(path) ? path : CombinePathsUnchecked(root, path);
RelativePathResolver.cs (2)
31
Debug.Assert(searchPaths.All(PathUtilities.
IsAbsolute
));
52
Debug.Assert(PathUtilities.
IsAbsolute
(fullPath));
Microsoft.CodeAnalysis.CodeStyle.Fixes (3)
ProjectExtensions.cs (3)
54
if (!PathUtilities.
IsAbsolute
(diagnosticFilePath))
87
if (!PathUtilities.
IsAbsolute
(solutionOrProjectFilePath))
100
Debug.Assert(PathUtilities.
IsAbsolute
(analyzerConfigPath));