Lines Matching defs:IF
212 std::ifstream IF(CFPath);
213 M.ParseOrExit(IF, false);
214 IF.close();
299 std::ifstream IF(MergeControlFilePathOrNull);
300 if (M.Parse(IF, /*ParseCoverage=*/false)) {
358 std::ifstream IF(CFPath);
359 IF.seekg(0, IF.end);
360 Printf("MERGE-OUTER: the control file has %zd bytes\n", (size_t)IF.tellg());
361 IF.seekg(0, IF.beg);
362 M.ParseOrExit(IF, true);
363 IF.close();