Lines Matching refs:findall
68 return [cond.tag] + [parse_cond(x) for x in cond.findall('*')]
76 for deriv in obj.findall('derived'):
80 opts = [parse_cond(d) for d in deriv.findall('*')]
91 for mod in obj.findall('mod'):
102 opts = [x.text if x.tag == 'opt' else x.tag for x in mod.findall('*')]
119 for node in enc.findall('copy'):
145 for src in ins.findall('src'):
152 for imm in ins.findall('immediate'):
162 for swap in ins.findall('swap'):
164 cond = parse_cond(swap.findall('*')[0])
167 for rw in swap.findall('rewrite'):
170 for m in rw.findall('map'):
177 encodings = ins.findall('encoding')
191 cond = parse_cond(enc.findall('*')[0])
198 instructions = ET.parse(xml).getroot().findall('ins')