Searched refs:str_value (Results  1 – 5 of 5) sorted by relevance
| /Zephyr-latest/scripts/kconfig/ | 
| D | hardenconfig.py | 50                     current = symbol.str_value59 …options.append(Option(name=node.item.name, current=node.item.str_value, recommended='n', symbol=no…
 
 | 
| D | guiconfig.py | 273         elif sym.str_value != sym.user_value:828             s += ": " + sym.str_value
 830             s = "({}) {}".format(sym.str_value, s)
 880         return "" if isinstance(item, Choice) else item.str_value + "-locked"
 883         return item.str_value + "-bool"
 887         return item.str_value + "-my"
 888     return item.str_value + "-tri"
 1156     if val != sc.str_value:
 1214     entry.insert(0, sym.str_value)
 1318             low_s = low_sym.str_value
 [all …]
 
 | 
| D | menuconfig.py | 766         elif sym.str_value != sym.user_value:1581         s = sc.str_value
 1664     if val != sc.str_value:
 2575             'Mode: {}\n'.format(choice.str_value) +
 2610         '"{}"'.format(sym.str_value)
 2612         else sym.str_value)
 2832         return '{}(={})'.format(sc.name, sc.str_value)
 3055         return "({})".format(item.str_value)
 3101             low_s = low_sym.str_value
 3102             high_s = high_sym.str_value
 [all …]
 
 | 
| D | kconfiglib.py | 1144                         with self._open_config(filename.str_value) as f:1479             val = sym.str_value
 1715             if sym.str_value == sym._str_default():
 1808             val = sym.str_value
 4325     def str_value(self):  member in Symbol
 4366                     low = int(low_expr.str_value, base) if \
 4367                       _is_base_n(low_expr.str_value, base) else 0
 4368                     high = int(high_expr.str_value, base) if \
 4369                       _is_base_n(high_expr.str_value, base) else 0
 4407                         val = sym.str_value
 [all …]
 
 | 
| D | kconfig.py | 166         if user_value != sym.str_value:
 |