17 references to IsAbsolute
Microsoft.CodeAnalysis.InteractiveHost (17)
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));
Interactive\Core\InteractiveHost.Service.cs (2)
508
Contract.ThrowIfFalse(initializationFilePath == null || PathUtilities.
IsAbsolute
(initializationFilePath));
712
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);