Lines Matching refs:MakeBase

2855 class MakeBase
2859 MakeBase()
2861 virtual ~MakeBase()
3111 bool listFiles(MakeBase &propRef, FileSet &fileSet);
3117 MakeBase &propRef,
3126 MakeBase &propRef,
3132 MakeBase &propRef,
3221 int MakeBase::numThreads = 1;
3224 * Define the pkg-config class here, since it will be used in MakeBase method
3227 class PkgConfig : public MakeBase
3459 class BzrRevno : public MakeBase
3486 * is used by MakeBase implementation methods.
3488 class SvnInfo : public MakeBase
3593 void MakeBase::error(const char *fmt, ...)
3608 void MakeBase::status(const char *fmt, ...)
3623 void MakeBase::trace(const char *fmt, ...)
3639 String MakeBase::resolve(const String &otherPath)
3652 bool MakeBase::regexMatch(const String &str, const String &pattern)
3690 String MakeBase::getSuffix(const String &fname)
3709 std::vector<String> MakeBase::tokenize(const String &str,
3751 String MakeBase::strip(const String &s)
3782 String MakeBase::leftJustify(const String &s)
3823 String MakeBase::trim(const String &s)
3853 String MakeBase::toLower(const String &s)
3871 String MakeBase::getNativePath(const String &path)
3936 bool MakeBase::executeCommand(const String &command,
4133 bool MakeBase::executeCommand(const String &command,
4254 bool MakeBase::listDirectories(const String &baseName,
4302 bool MakeBase::listFiles(const String &baseDir,
4367 * Several different classes extend MakeBase. By "propRef", we mean
4370 bool MakeBase::listFiles(MakeBase &propRef, FileSet &fileSet)
4443 bool MakeBase::pkgConfigRecursive(const String packageName,
4483 bool MakeBase::pkgConfigQuery(const String &packageName, int query, String &result)
4502 bool MakeBase::lookupProperty(const String &propertyName, String &result)
4585 bool MakeBase::getSubstitutionsRecursive(const String &str,
4646 bool MakeBase::getSubstitutions(const String &str, String &result)
4657 String MakeBase::eval(const String &s, const String &defaultVal)
4674 bool MakeBase::evalBool(const String &s, bool defaultVal)
4687 int MakeBase::evalInt(const String &s, int defaultVal)
4701 bool MakeBase::getAttribute(Element *elem, const String &name,
4717 bool MakeBase::getValue(Element *elem, String &result)
4733 bool MakeBase::parsePatternSet(Element *elem,
4734 MakeBase &propRef,
4772 bool MakeBase::parseFileSet(Element *elem,
4773 MakeBase &propRef,
4846 bool MakeBase::parseFileList(Element *elem,
4847 MakeBase &propRef,
4890 bool MakeBase::createDirectory(const String &dirname)
4947 bool MakeBase::removeDirectory(const String &dirName)
5028 bool MakeBase::copyFile(const String &srcFile, const String &destFile)
5105 bool MakeBase::removeFile(const String &file)
5169 bool MakeBase::fileExists(const String &fileName)
5185 bool MakeBase::isRegularFile(const String &fileName)
5205 bool MakeBase::isDirectory(const String &fileName)
5227 bool MakeBase::isNewerThan(const String &fileA, const String &fileB)
5763 class DepTool : public MakeBase
6538 class Task : public MakeBase
6573 Task(MakeBase &par) : parent(par)
6598 virtual MakeBase &getParent()
6670 MakeBase &parent;
6688 TaskCC(MakeBase &par) : Task(par)
7074 TaskCopy(MakeBase &par) : Task(par)
7309 TaskCxxTestPart(MakeBase &par) : Task(par)
7406 TaskCxxTestRoot(MakeBase &par) : Task(par)
7513 TaskCxxTestRun(MakeBase &par) : Task(par)
7611 TaskDelete(MakeBase &par) : Task(par)
7708 TaskEcho(MakeBase &par) : Task(par)
7755 TaskJar(MakeBase &par) : Task(par)
7819 TaskJavac(MakeBase &par) : Task(par)
7942 TaskLink(MakeBase &par) : Task(par)
8133 TaskMakeFile(MakeBase &par) : Task(par)
8203 TaskMkDir(MakeBase &par) : Task(par)
8247 TaskMsgFmt(MakeBase &par) : Task(par)
8393 TaskPkgConfig(MakeBase &par) : Task(par)
8491 TaskRanlib(MakeBase &par) : Task(par)
8544 TaskRC(MakeBase &par) : Task(par)
8619 TaskSharedLib(MakeBase &par) : Task(par)
8757 TaskStaticLib(MakeBase &par) : Task(par)
8867 TaskStrip(MakeBase &par) : Task(par)
8940 TaskTouch(MakeBase &par) : Task(par)
8999 TaskTstamp(MakeBase &par) : Task(par)
9094 class Target : public MakeBase
9261 class Make : public MakeBase