Lines Matching defs:DepTool

2  * DepTool dependency tool
37 # This is a list of files to exclude from building, using DepTool
189 class DepTool
196 DepTool();
201 virtual ~DepTool();
381 DepTool::DepTool()
389 DepTool::~DepTool()
398 void DepTool::reset()
429 void DepTool::error(char *fmt, ...)
433 fprintf(stderr, "DepTool error: ");
443 void DepTool::trace(char *fmt, ...)
447 fprintf(stdout, "DepTool: ");
462 String DepTool::trim(const String &s)
492 void DepTool::parseName(const String &fullname,
528 String DepTool::getSuffix(const String &fname)
551 bool DepTool::listFilesInDirectory(const String &dirname, int depth)
640 bool DepTool::createFileList()
686 int DepTool::get(int pos)
699 int DepTool::skipwhite(int pos)
719 int DepTool::getword(int pos, String &ret)
738 bool DepTool::sequ(int pos, char *key)
756 bool DepTool::addIncludeFile(FileRec *frec, const String &iname)
799 bool DepTool::scanFile(const String &fname, FileRec *frec)
883 bool DepTool::processDependency(FileRec *ofile,
913 bool DepTool::processReference(FileRec *hfile,
946 bool DepTool::generateDependencies()
1004 * High-level call to do what DepTool does.
1006 bool DepTool::run()
1030 bool DepTool::saveFileList()
1042 fprintf(f, "## Generated by DepTool at :%s", ctime(&tim));
1094 bool DepTool::saveDepFile(bool doXml)
1112 fprintf(f, "## Generated by DepTool at :%s", ctime(&tim));
1197 fprintf(f, "## Generated by DepTool at :%s", ctime(&tim));
1277 bool DepTool::saveRefFile(bool doXml)
1294 fprintf(f, "## Generated by DepTool at :%s", ctime(&tim));
1333 fprintf(f, "## Generated by DepTool at :%s", ctime(&tim));
1375 bool DepTool::saveCmakeFile()
1387 fprintf(f, "## Generated by DepTool at :%s", ctime(&tim));
1444 * Run the DepTool's main functions
1448 DepTool depTool;