Exemple #1
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['elsif'])
Exemple #2
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['function'])
Exemple #3
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['package'])
Exemple #4
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['component'])
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['entity'])
Exemple #6
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['when'])
Exemple #7
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['library'])
Exemple #8
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['downto'])
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['generate'])
Exemple #10
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['procedure'])
Exemple #11
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['architecture'])
Exemple #12
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['attribute'])
Exemple #13
0
 def _extract(self, oLine):
     if not oLine.isDirectInstantiationDeclaration:
         return utils.extract_words(oLine, ['component'])
     else:
         return []
Exemple #14
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['port', 'map'])