Home | History | Annotate | Download | only in task

Lines Matching refs:child

124     const XMLElement* child = self.FirstChildElement();
125 while (child != NULL) {
130 if (strcmp(child->Value(), mParsingTable[i].name) == 0) {
135 LOGE("ModelBuilder::parseGeneric unknown element %s", child->Value());
140 // check if the type is allowed as child
150 LOGE("ModelBuilder::parseGeneric unsupported child type %d for type %d", childType,
154 std::unique_ptr<TaskGeneric> taskChild(parseGeneric(*child, i));
156 LOGE("ModelBuilder::parseGeneric failed in parsing child type %d for type %d",
161 LOGE("ModelBuilder::parseGeneric cannot add child type %d to type %d", childType,
167 child = child->NextSiblingElement();
171 LOGE("ModelBuilder::parseGeneric mandatory child type %d not present in type %d",