19 references to IsAbsolute
Microsoft.CodeAnalysis.CodeStyle (19)
src\Compilers\Core\Portable\FileSystem\FileUtilities.cs (13)
48Debug.Assert(baseDirectory == null || searchPaths != null || PathUtilities.IsAbsolute(baseDirectory)); 61Debug.Assert(PathUtilities.IsAbsolute(combinedPath)); 72Debug.Assert(PathUtilities.IsAbsolute(combinedPath)); 85Debug.Assert(PathUtilities.IsAbsolute(combinedPath)); 102Debug.Assert(baseDirectory == null || PathUtilities.IsAbsolute(baseDirectory)); 199Debug.Assert(PathUtilities.IsAbsolute(resolvedBasePath)); 249Debug.Assert(PathUtilities.IsAbsolute(path)); 276if (!PathUtilities.IsAbsolute(path)) 293Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 311Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 395Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 413Debug.Assert(PathUtilities.IsAbsolute(fullPath)); 436Debug.Assert(PathUtilities.IsAbsolute(fullPath));
src\Compilers\Core\Portable\FileSystem\PathUtilities.cs (3)
305if (IsAbsolute(path)) 403Debug.Assert(IsAbsolute(root)); 474return IsAbsolute(path) ? path : CombinePathsUnchecked(root, path);
src\Compilers\Core\Portable\FileSystem\RelativePathResolver.cs (2)
29Debug.Assert(searchPaths.All(PathUtilities.IsAbsolute)); 50Debug.Assert(PathUtilities.IsAbsolute(fullPath));
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Utilities\CompilerUtilities\CompilerPathUtilities.cs (1)
19if (!PathUtilities.IsAbsolute(path))