Home | History | Annotate | Download | only in scripts

Lines Matching refs:elem

475         typeElem = typeinfo.elem
492 for elem in param:
493 if ((elem.tag is not 'type') and (elem.tail is not None)) and '*' in elem.tail:
500 for elem in types:
501 if (elem.find("name") is not None and elem.find('name').text == typename) or elem.attrib.get('name') == typename:
502 return elem.attrib.get('category')
524 for elem in param:
525 if elem.tag == 'type':
526 type = noneStr(elem.text)
527 elif elem.tag == 'name':
528 name = noneStr(elem.text)
563 members = typeinfo.elem.findall('.//member')
582 rawXml = etree.tostring(typeinfo.elem).decode('ascii')
848 members = cmdinfo.elem.findall('.//param')
915 (pre_call_validate, pre_call_record, post_call_record) = self.generate_wrapping_code(cmdinfo.elem)
926 decls = self.makeCDecls(cmdinfo.elem)
929 params = cmdinfo.elem.findall('param/name')
933 fcn_call = cmdinfo.elem.attrib.get('name').replace('vk', 'TOKEN', 1) + '(' + paramstext + ');'
938 result_type = cmdinfo.elem.find('proto/type')