示例#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'])