Home | History | Annotate | Download | only in dae

Lines Matching refs:getAttribute

212 std::string daeElement::getAttribute(size_t i) {
214 getAttribute(i, value);
218 void daeElement::getAttribute(size_t i, std::string& value) {
227 std::string daeElement::getAttribute(daeString name) {
229 getAttribute(name, value);
233 void daeElement::getAttribute(daeString name, std::string& value) {
234 getAttribute(getAttributeIndex(*this, name), value);
251 getAttribute(i, value);
446 std::string id = ret->getAttribute("id");
452 std::string name = ret->getAttribute("name");
498 id1 = formatToken(elt1->getAttribute("id")),
499 id2 = formatToken(elt2->getAttribute("id")),
502 attrValue1 = formatToken(elt1->getAttribute(attrMismatch.c_str())),
503 attrValue2 = formatToken(elt2->getAttribute(attrMismatch.c_str())),
552 result.compareValue = strcmp(elt1.getAttribute(attr.c_str()).c_str(),
553 elt2.getAttribute(attr.c_str()).c_str());
614 elt1.getAttribute(i, value1);
615 elt2.getAttribute(elt1.getAttributeName(i).c_str(), value2);