Lines Matching full:path
63 // A FilePath with a value ending in a path separator ("like/this/") represents
117 // Returns true if and only if the path is "".
126 // Example: FilePath("path/to/file").RemoveDirectoryName() returns
130 // On Windows platform, '\' is the path separator, otherwise it is '/'.
133 // RemoveFileName returns the directory path with the filename removed.
134 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
138 // On Windows platform, '\' is the path separator, otherwise it is '/'.
147 // Creates directories so that path exists. Returns true if successful or if
150 // not represent a directory (that is, it doesn't end with a path separator).
153 // Create the directory so that path exists. Returns true if successful or
167 // Returns true if FilePath ends with a path separator, which indicates that
176 // Returns true if pathname describes an absolute path.
196 // On Windows this method also replaces the alternate path separator '/' with
197 // the primary path separator '\\', so that for example "bar\\/\\foo" becomes
202 // Returns a pointer to the last occurrence of a valid path separator in
203 // the FilePath. On Windows, for example, both '/' and '\' are valid path
204 // separators. Returns NULL if no path separator was found.
207 // Returns the length of the path root, including the directory separator at
208 // the end of the prefix. Returns zero by definition if the path is relative.