Home | History | Annotate | Download | only in tools

Lines Matching defs:inFile

52 std::string inFile;
99 inFile = argv[optind];
101 int l = inFile.length();
102 if (l > 3 && inFile[l-3] == '.' && inFile[l-2] == 'b' && inFile[l-1] == 'c') {
103 outFile = std::string(inFile.begin(), inFile.end() - 3) + ".ll";
104 infoFile = std::string(inFile.begin(), inFile.end() - 3) + ".bcinfo";
106 outFile = inFile + ".ll";
107 infoFile = inFile + ".bcinfo";
217 if (!inFile.length()) {
223 if (stat(inFile.c_str(), &statInFile) < 0) {
233 FILE *in = fopen(inFile.c_str(), "r");
235 fprintf(stderr, "Could not open input file %s\n", inFile.c_str());
245 fprintf(stderr, "Could not read all of file %s\n", inFile.c_str());
316 inFile.c_str(), false));