Lines Matching +full:re +full:- +full:config
1 # SPDX-License-Identifier: GPL-2.0
3 # Builds a .config from a kunitconfig.
10 import re
19 def __str__(self) -> str:
27 """Error parsing Kconfig defconfig or .config."""
31 """Represents defconfig or .config specified using the Kconfig language."""
39 def add_entry(self, entry: KconfigEntry) -> None:
42 def is_subset_of(self, other: 'Kconfig') -> bool:
55 def write_to_file(self, path: str) -> None:
60 def parse_from_string(self, blob: str) -> None:
63 is_not_set_matcher = re.compile(CONFIG_IS_NOT_SET_PATTERN)
64 config_matcher = re.compile(CONFIG_PATTERN)
87 def read_from_file(self, path: str) -> None: