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