Home
last modified time | relevance | path

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

/hal_nxp-latest/mcux/mcux-sdk/scripts/kconfig/
Dguiconfig.py272 elif sym.str_value != sym.user_value:
827 s += ": " + sym.str_value
829 s = "({}) {}".format(sym.str_value, s)
879 return "" if isinstance(item, Choice) else item.str_value + "-locked"
882 return item.str_value + "-bool"
886 return item.str_value + "-my"
887 return item.str_value + "-tri"
1155 if val != sc.str_value:
1213 entry.insert(0, sym.str_value)
1317 low_s = low_sym.str_value
[all …]
Dkconfiglib.py1142 with self._open_config(filename.str_value) as f:
1477 val = sym.str_value
1714 if sym.str_value == sym._str_default():
1807 val = sym.str_value
4287 def str_value(self): member in Symbol
4328 low = int(low_expr.str_value, base) if \
4329 _is_base_n(low_expr.str_value, base) else 0
4330 high = int(high_expr.str_value, base) if \
4331 _is_base_n(high_expr.str_value, base) else 0
4369 val = sym.str_value
[all …]
Dmenuconfig.py766 elif sym.str_value != sym.user_value:
1581 s = sc.str_value
1664 if val != sc.str_value:
2569 'Mode: {}\n'.format(choice.str_value) +
2604 '"{}"'.format(sym.str_value)
2606 else sym.str_value)
2826 return '{}(={})'.format(sc.name, sc.str_value)
3049 return "({})".format(item.str_value)
3095 low_s = low_sym.str_value
3096 high_s = high_sym.str_value
[all …]
Dkconfig.py138 if user_value != sym.str_value: