Home | History | Annotate | Download | only in common

Lines Matching refs:FILES

21 #include "base/files/file_enumerator.h"
42 // We build up a list of files and mtimes so we can sort them.
271 // Skip files that aren't appropriate for our architecture.
452 // and tens of accompanying files (mxr is very helpful).
496 FileTimeList files;
499 base::FileEnumerator::FILES);
502 // Skip over Mozilla .xpt files.
507 // its path to find dependent data files.
551 files.push_back(std::make_pair(path, info.last_modified));
555 std::sort(files.begin(), files.end(), CompareTime);
557 // Load the files in order.
558 for (FileTimeList::const_iterator i = files.begin(); i != files.end(); ++i) {