Lines Matching defs:file

6  *  This file has been merged from multiple headers. Please don't edit it directly
10 * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
55 // In the impl file, we want to have access to all parts of the headers
507 : file( _file ),
516 bool empty() const noexcept { return file[0] == '\0'; }
520 char const* file;
7649 // Cpp files will be included in the single-header file here
8430 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8461 // file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9728 return ParserResult::runtimeError( "Unable to load input file: '" + filename + "'" );
9861 ["-f"]["--input-file"]
9862 ( "load test names to run from a file" )
9924 return line == other.line && (file == other.file || std::strcmp(file, other.file) == 0);
9927 // We can assume that the same file will usually have the same pointer.
9929 return line < other.line || ( line == other.line && file != other.file && (std::strcmp(file, other.file) < 0));
9934 os << info.file << '(' << info.line << ')';
9936 os << info.file << ':' << info.line;
12004 // to create a file inside system folder, thus requiring elevated
12006 // create the file ourselves there.
12114 CATCH_RUNTIME_ERROR("Could not open the temp file: '" << m_buffer << "' because: " << buffer);
12121 CATCH_RUNTIME_ERROR("Could not create a temp file.");
12130 // We manually create the file on Windows only, on Linux
13390 std::string filename = testCase.lineInfo.file;
13701 CATCH_ENFORCE( !m_ofs.fail(), "Unable to open file: '" << filename << "'" );
15318 // (See accompanying file LICENSE_1_0.txt or copy at
17273 .writeAttribute( "filename", sourceInfo.file )