Home
last modified time | relevance | path

Searched refs:potentialBasePath (Results 1 – 1 of 1) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/linker/linker/Tests/Extensions/
H A DNiceIO.cs755 public bool IsChildOf(string potentialBasePath) in IsChildOf() argument
757 return IsChildOf(new NPath(potentialBasePath)); in IsChildOf()
760 public bool IsChildOf(NPath potentialBasePath) in IsChildOf() argument
762 if ((IsRelative && !potentialBasePath.IsRelative) || !IsRelative && potentialBasePath.IsRelative) in IsChildOf()
766 if (potentialBasePath.IsRoot) in IsChildOf()
768 if (_driveLetter != potentialBasePath._driveLetter) in IsChildOf()
776 if (Equals(potentialBasePath)) in IsChildOf()
779 return Parent.IsChildOf(potentialBasePath); in IsChildOf()