Lines Matching refs:child
66 for child in el:
67 if child.tag == 'value':
68 is_default = child.attrib.get('default', False)
69 values.append(EnumValue(child.text, is_default))
70 elif child.tag == 'reserved':
372 for child in root.findall('enum'):
373 enums[safe_name(child.attrib['name'])] = build_enum(child)
422 for child in root:
423 if child.tag == 'group':
424 build_group(child)
425 elif child.tag == 'ins':
426 build_instr(child)