예제 #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'])