Lines Matching defs:index
52 unsigned int index)
59 index == count)) {
73 bool Parametrisable::removeParameter(const string& id, unsigned int index)
79 if ((p->getId() == id) && (index == count++)) {
90 * then the index is used to determine which instance is returned, in
94 unsigned int index) const
100 if ((p->getId() == id) && (index == count++)) {
105 cerr << "Could not find parameter '" << id << "' (" << index << ")" << endl;
121 bool Parametrisable::hasParameter(const string& id, unsigned int index) const
127 if ((p->getId() == id) && (index == count++)) {