Home | History | Annotate | Download | only in root

Lines Matching refs:absolute

112      * Determine if path is absolute.
116 * true if absolute path name.
118 extern (C++) static bool absolute(const(char)* name) pure @nogc
120 return absolute(name.toDString);
124 extern (D) static bool absolute(const(char)[] name) pure @nogc
146 assert(absolute("/"[]) == true);
147 assert(absolute(""[]) == false);
151 assert(absolute(r"\"[]) == true);
152 assert(absolute(r"\\"[]) == true);
153 assert(absolute(r"c:"[]) == true);
158 Return the given name as an absolute path
162 base = the absolute base to prefix name with if it is relative
164 Returns: name as an absolute path relative to base
170 return absolute(name_) ? name : combine(base_, name_).ptr;
359 if (absolute(name))
671 if (absolute(name))
699 if (absolute(name))
1114 * limit, unless the path is absolute and starts with `\\?\`. Note