Lines Matching refs:elem
34 def warnElem(elem, fmt, *args):
35 warning('%s:%d, %s %s: ' + fmt, elem.base, elem.sourceline, elem.tag, elem.get('name') or '', *args)
58 def makeObject(cls, elem, **kwargs):
59 kwargs.setdefault('name', elem.get('name'))
60 kwargs.setdefault('comment', elem.get('comment'))
61 kwargs['location'] = (elem.base, elem.sourceline)
260 def addComponents(self, elem, api, profile=None):
261 for eComponent in elem.xpath('require|remove'):
305 def extractPtype(elem):
306 ePtype = elem.find('ptype')
311 def extractGroup(elem):
312 groupName = elem.get('group')