Home | History | Annotate | Download | only in tools

Lines Matching defs:files

22     "This program takes a list of Skia Picture (SKP) files and renders\n"
32 "A list of directories and files to use as input.\n"
33 "Files are expected to have the .skp extension.");
46 // no files found.
47 static bool process_input_files(SkTArray<SkString>* files) {
54 files->push_back(SkOSPath::Join(input, inputFilename.c_str()));
59 files->push_back(SkString(input));
68 if (files->count() > 0) {
69 SkTQSort<SkString>(files->begin(), files->end() - 1);
170 SkTArray<SkString> files;
171 if (!process_input_files(&files)) {
175 for (int i = 0; i < files.count(); ++i) {
176 SkString basename = SkOSPath::Basename(files[i].c_str());
177 SkFILEStream inputStream(files[i].c_str());
201 return successCount == files.count() ? 0 : 1;