Home
last modified time | relevance | path

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

/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dcmakecache.py82 name, type_, value = (m.group(g) for g in ('name', 'type', 'value'))
83 if type_ == 'BOOL':
91 elif type_ in ['STRING', 'INTERNAL'] and ';' in value:
/Zephyr-latest/include/zephyr/data/
Djson.h153 #define JSON_OBJ_DESCR_PRIM(struct_, field_name_, type_) \ argument
158 .type = type_, \
445 struct_field_name_, type_) \ argument
450 .type = type_, \
/Zephyr-latest/scripts/west_commands/
Dzcmake.py185 name, type_, value = (m.group(g) for g in ('name', 'type', 'value'))
186 if type_ == 'BOOL':
192 elif type_ in {'STRING', 'INTERNAL', 'STATIC', 'UNINITIALIZED'}:
/Zephyr-latest/scripts/ci/
Dcheck_compliance.py148 def error(self, text, msg=None, type_="error"): argument
155 err = Error(msg or f'{type(self).name} error', type_)
160 def skip(self, text, msg=None, type_="skip"): argument
167 skpd = Skipped(msg or f'{type(self).name} skipped', type_)
172 def failure(self, text, msg=None, type_="failure"): argument
177 fail = Failure(msg or f'{type(self).name} issues', type_)
/Zephyr-latest/scripts/kconfig/
Dkconfiglib.py3767 def num_ok(sym, type_): argument
3774 return _is_base_n(sym.name, _TYPE_TO_BASE[type_])
3776 return sym.orig_type is type_
6379 def _parenthesize(expr, type_, sc_expr_str_fn): argument
6382 if expr.__class__ is tuple and expr[0] is type_: