Lines Matching defs:task
6652 * Show task status
6680 * This task runs the C/C++ compiler. The compiler is invoked
7272 error("a <copy> task with a <fileset> must have : todir=");
9025 //trace("task:%s", tagName.c_str());
9026 Task *task = NULL;
9028 task = new TaskCC(parent);
9030 task = new TaskCopy(parent);
9032 task = new TaskCxxTestPart(parent);
9034 task = new TaskCxxTestRoot(parent);
9036 task = new TaskCxxTestRun(parent);
9038 task = new TaskDelete(parent);
9040 task = new TaskEcho(parent);
9042 task = new TaskJar(parent);
9044 task = new TaskJavac(parent);
9046 task = new TaskLink(parent);
9048 task = new TaskMakeFile(parent);
9050 task = new TaskMkDir(parent);
9052 task = new TaskMsgFmt(parent);
9054 task = new TaskPkgConfig(parent);
9056 task = new TaskRanlib(parent);
9058 task = new TaskRC(parent);
9060 task = new TaskSharedLib(parent);
9062 task = new TaskStaticLib(parent);
9064 task = new TaskStrip(parent);
9066 task = new TaskTouch(parent);
9068 task = new TaskTstamp(parent);
9071 error("Unknown task '%s'", tagName.c_str());
9075 task->setLine(lineNr);
9077 if (!task->parse(elem))
9079 delete task;
9082 return task;
9341 bool executeTask(Task &task);
9531 Task *task = tasks[i];
9532 status("--- %s / %s", name.c_str(), task->getName().c_str());
9533 if (!task->execute())
9949 Task *task = breeder.createTask(telem, telem->getLine());
9950 if (!task)
9952 allTasks.push_back(task);
9953 target.addTask(task);