22 references to IsAbsolute
Microsoft.CodeAnalysis.CodeStyle (19)
src\roslyn\src\Compilers\Core\Portable\FileSystem\FileUtilities.cs (13)
52
Debug.Assert(baseDirectory == null || searchPaths != null || PathUtilities.
IsAbsolute
(baseDirectory));
65
Debug.Assert(PathUtilities.
IsAbsolute
(combinedPath));
76
Debug.Assert(PathUtilities.
IsAbsolute
(combinedPath));
89
Debug.Assert(PathUtilities.
IsAbsolute
(combinedPath));
106
Debug.Assert(baseDirectory == null || PathUtilities.
IsAbsolute
(baseDirectory));
203
Debug.Assert(PathUtilities.
IsAbsolute
(resolvedBasePath));
253
Debug.Assert(PathUtilities.
IsAbsolute
(path));
280
if (!PathUtilities.
IsAbsolute
(path))
297
Debug.Assert(PathUtilities.
IsAbsolute
(fullPath));
315
Debug.Assert(PathUtilities.
IsAbsolute
(fullPath));
399
Debug.Assert(PathUtilities.
IsAbsolute
(fullPath));
417
Debug.Assert(PathUtilities.
IsAbsolute
(fullPath));
440
Debug.Assert(PathUtilities.
IsAbsolute
(fullPath));
src\roslyn\src\Compilers\Core\Portable\FileSystem\PathUtilities.cs (3)
330
if (
IsAbsolute
(path))
428
Debug.Assert(
IsAbsolute
(root));
499
return
IsAbsolute
(path) ? path : CombinePathsUnchecked(root, path);
src\roslyn\src\Compilers\Core\Portable\FileSystem\RelativePathResolver.cs (2)
29
Debug.Assert(searchPaths.All(PathUtilities.
IsAbsolute
));
50
Debug.Assert(PathUtilities.
IsAbsolute
(fullPath));
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\CompilerUtilities\CompilerPathUtilities.cs (1)
19
if (!PathUtilities.
IsAbsolute
(path))
Microsoft.CodeAnalysis.CodeStyle.Fixes (3)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ProjectExtensions.cs (3)
43
if (!PathUtilities.
IsAbsolute
(diagnosticFilePath))
76
if (!PathUtilities.
IsAbsolute
(solutionOrProjectFilePath))
89
Debug.Assert(PathUtilities.
IsAbsolute
(analyzerConfigPath));