Home | History | Annotate | Download | only in base

Lines Matching defs:directories

162   std::stack<std::string> directories;
163 directories.push(path.value());
165 FileEnumerator::FILES | FileEnumerator::DIRECTORIES |
173 directories.push(current.value());
178 while (success && !directories.empty()) {
179 FilePath dir = FilePath(directories.top());
180 directories.pop();
189 // must be the same type, either both files, or both directories.
257 traverse_type | FileEnumerator::DIRECTORIES);
492 // Collect a list of all parent directories.
682 if ((S_ISDIR(i->stat.st_mode) && (file_type_ & DIRECTORIES)) ||