Lines Matching full:input_file
2321 std::unique_ptr<std::ifstream> input_file(new std::ifstream(input_filename, std::ifstream::in));
2322 if (input_file.get() == nullptr) {
2327 ReadCommentedInputStream(*input_file, process));
2328 input_file->close();
2349 std::unique_ptr<MemMap> input_file(zip_entry->ExtractToMemMap(zip_filename,
2352 if (input_file.get() == nullptr) {
2357 const std::string input_string(reinterpret_cast<char*>(input_file->Begin()),
2358 input_file->Size());