コード例 #1
0
ファイル: rule_026.py プロジェクト: marph91/vhdl-style-guide
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['elsif'])
コード例 #2
0
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['function'])
コード例 #3
0
ファイル: rule_004.py プロジェクト: marph91/vhdl-style-guide
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['package'])
コード例 #4
0
ファイル: rule_004.py プロジェクト: marph91/vhdl-style-guide
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['component'])
コード例 #5
0
ファイル: rule_027.py プロジェクト: willkamp/vhdl-style-guide
 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
ファイル: rule_010.py プロジェクト: willkamp/vhdl-style-guide
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['generate'])
コード例 #10
0
ファイル: rule_009.py プロジェクト: marph91/vhdl-style-guide
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['procedure'])
コード例 #11
0
ファイル: rule_004.py プロジェクト: willkamp/vhdl-style-guide
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['architecture'])
コード例 #12
0
ファイル: rule_002.py プロジェクト: marph91/vhdl-style-guide
 def _extract(self, oLine):
     return utils.extract_words(oLine, ['attribute'])
コード例 #13
0
ファイル: rule_031.py プロジェクト: willkamp/vhdl-style-guide
 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'])