Home
last modified time | relevance | path

Searched refs:_re_match (Results 1 – 1 of 1) sorted by relevance

/Zephyr-latest/scripts/kconfig/
Dkconfiglib.py981 self._set_match = _re_match(self.config_prefix + r"([^=]+)=(.*)")
982 self._unset_match = _re_match(r"# {}([^ ]+) is not set".format(
7166 def _re_match(regex): function
7184 _command_match = _re_match(r"\s*([A-Za-z0-9_$-]+)\s*")
7188 _id_keyword_match = _re_match(r"([A-Za-z0-9_$/.-]+)\s*")
7193 _assignment_lhs_fragment_match = _re_match("[A-Za-z0-9_-]*")
7197 _assignment_rhs_match = _re_match(r"\s*(=|:=|\+=)\s*(.*)")
7211 _conf_string_match = _re_match(r'"((?:[^\\"]|\\.)*)"')