Lines Matching refs:eFeature
191 for eFeature in self.features:
192 self.apis.setdefault(eFeature.get('api'), []).append(eFeature)
194 apiFeatures.sort(key=lambda eFeature: eFeature.get('number'))
199 return [eFeature for eFeature in self.apis[api]
200 if checkVersion is None or checkVersion(eFeature.get('number'))]
269 def addFeature(self, eFeature, api=None, profile=None, force=False): argument
270 info('Feature %s', eFeature.get('name'))
271 if not matchApi(api, eFeature.get('api')):
273 warnElem(eFeature, 'API %s is not supported', api)
274 self.addComponents(eFeature, api, profile)
275 self.versions.add(eFeature.get('name'))
401 for eFeature in registry.getFeatures(api, check):
402 spec.addFeature(eFeature, api, profile, force)