Home | History | Annotate | Download | only in scripts

Lines Matching refs:elem

190         groupElem = groupinfo.elem
194 for elem in groupElem.findall('enum'):
195 if elem.get('supported') != 'disabled' and elem.get('alias') is None:
196 value_set.add(elem.get('name'))
201 for elem in groupElem.findall('enum'):
202 if elem.get('supported') != 'disabled':
203 item_name = elem.get('name')
206 for elem in groupElem.findall('enum'):
207 if elem.get('supported') != 'disabled':
208 item_name = elem.get('name')
215 typeElem = typeinfo.elem
231 for elem in param:
232 if ((elem.tag is not 'type') and (elem.tail is not None)) and '*' in elem.tail:
248 for elem in param:
249 if elem.tag == 'type':
250 type = noneStr(elem.text)
251 elif elem.tag == 'name':
252 name = noneStr(elem.text)
323 members = typeinfo.elem
342 rawXml = etree.tostring(typeinfo.elem).decode('ascii')