Lines Matching defs:file
3 // found in the LICENSE file.
83 // File compare between test and result.
93 // Backup the result emf file.
105 // Backup the rendered emf file to detect the rendering difference.
131 // Verifies that there is one .emf and one .prn file in the dump directory.
132 // Returns the path of the .emf file and deletes the .prn file.
146 FilePath file;
147 while (!(file = enumerator.Next()).empty()) {
148 std::wstring ext = file.Extension();
150 EXPECT_FALSE(found_emf) << "Found a leftover .EMF file: \"" <<
151 emf_file << "\" and \"" << file.value() <<
154 emf_file = file.value();
158 EXPECT_FALSE(found_prn) << "Found a leftover .PRN file: \"" <<
159 prn_file << "\" and \"" << file.value() <<
161 prn_file = file.value();
163 file_util::Delete(file, false);
172 EXPECT_TRUE(found_emf) << ".PRN file is: " << prn_file;
173 EXPECT_TRUE(found_prn) << ".EMF file is: " << emf_file;