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