17 references to IsAbsolute
Microsoft.CodeAnalysis.InteractiveHost (17)
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));
Interactive\Core\InteractiveHost.Service.cs (2)
508Contract.ThrowIfFalse(initializationFilePath == null || PathUtilities.IsAbsolute(initializationFilePath)); 712Debug.Assert(PathUtilities.IsAbsolute(fullPath));
PathUtilities.cs (3)
304if (IsAbsolute(path)) 402Debug.Assert(IsAbsolute(root)); 473return IsAbsolute(path) ? path : CombinePathsUnchecked(root, path);