How to use the vsg.utils.extract_words function in vsg

To help you get started, we’ve selected a few vsg examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github jeremiah-c-leary / vhdl-style-guide / vsg / rules / instantiation / rule_006.py View on Github external
def _extract(self, oLine):
        return utils.extract_words(oLine, ['port', 'map'])
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / if_statement / rule_026.py View on Github external
def _extract(self, oLine):
        return utils.extract_words(oLine, ['elsif'])
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / process / rule_008.py View on Github external
def _extract(self, oLine):
        return utils.extract_words(oLine, ['end'])
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / function / rule_004.py View on Github external
def _extract(self, oLine):
        return utils.extract_words(oLine, ['begin'])
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / process / rule_009.py View on Github external
def _extract(self, oLine):
        return utils.extract_words(oLine, ['process'])
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / process / rule_004.py View on Github external
def _extract(self, oLine):
        return utils.extract_words(oLine, ['begin'])
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / architecture / rule_019.py View on Github external
def _extract(self, oLine):
        return utils.extract_words(oLine, ['of'])
github jeremiah-c-leary / vhdl-style-guide / vsg / rules / component / rule_014.py View on Github external
def _extract(self, oLine):
        return utils.extract_words(oLine, ['component'])