Home | History | Annotate | Download | only in task

Lines Matching defs:child

121     const TiXmlElement* child = self.FirstChildElement();
122 while (child != NULL) {
127 if (strcmp(child->Value(), mParsingTable[i].name) == 0) {
132 LOGE("ModelBuilder::parseGeneric unknown element %s", child->Value());
137 // check if the type is allowed as child
147 LOGE("ModelBuilder::parseGeneric unsupported child type %d for type %d", childType,
151 UniquePtr<TaskGeneric> taskChild(parseGeneric(*child, i));
153 LOGE("ModelBuilder::parseGeneric failed in parsing child type %d for type %d",
158 LOGE("ModelBuilder::parseGeneric cannot add child type %d to type %d", childType,
164 child = child->NextSiblingElement();
168 LOGE("ModelBuilder::parseGeneric mandatory child type %d not present in type %d",