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