Searched refs:tuple (Results 1 – 25 of 26) sorted by relevance
12
/Zephyr-latest/scripts/ |
D | set_assignees.py | 253 labels = tuple(sorted(labels)) 262 if tuple([area]) not in label_to_maintainer: 263 label_to_maintainer[tuple([area])] = maintainers 268 if tuple([label_name]) not in label_to_maintainer: 272 issue_labels = tuple(sorted(issue_labels))
|
D | get_maintainer.py | 530 paths = tuple(root.glob(glob_pattern))
|
/Zephyr-latest/scripts/ci/ |
D | pylintrc | 180 trailing-comma-tuple, 202 assert-on-tuple, 217 unbalanced-tuple-unpacking, 224 raising-format-tuple,
|
/Zephyr-latest/scripts/build/ |
D | process_gperf.py | 77 return "(char *)0x%02x%02x%02x%02x%02x%02x%02x%02x" % tuple(addr_vals)
|
/Zephyr-latest/scripts/release/ |
D | bug_bash.py | 103 top_ten.append(tuple([score, user]))
|
/Zephyr-latest/doc/_extensions/zephyr/ |
D | gh_utils.py | 166 def git_info_filter(app: Sphinx, pagename) -> tuple[str, str] | None:
|
/Zephyr-latest/scripts/kconfig/ |
D | kconfig.py | 176 if isinstance(expr, tuple):
|
D | kconfiglib.py | 5022 if select.__class__ is tuple: 5935 if expr.__class__ is tuple and expr[0] is AND and expr[2] is self.dep: 6043 if expr.__class__ is not tuple: 6122 if expr.__class__ is not tuple: 6136 if expr[1].__class__ is tuple: 6158 if subexpr.__class__ is tuple: 6210 if subexpr.__class__ is tuple and subexpr[0] is op: 6365 if expr.__class__ is tuple: 6382 if expr.__class__ is tuple and expr[0] is type_: 6493 if expr.__class__ is not tuple:
|
D | menuconfig.py | 371 return tuple(0 if x < 48 else int(round(max(1, (x - 55)/40))) for x in rgb) 377 return tuple(0 if x == 0 else 40*x + 55 for x in r6g6b6) 502 d = dist(rgb, tuple(int(round(255*c/1000)) 2677 if isinstance(val, tuple): 2717 if isinstance(term, tuple):
|
D | guiconfig.py | 2152 if isinstance(val, tuple): 2192 if isinstance(term, tuple):
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | config_parser.py | 16 ) -> tuple[dict[str, list[str]], list[str]]:
|
D | testplan.py | 1050 test_keys = tuple(test_keys)
|
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/ |
D | edtlib.py | 2025 self._compat2binding: dict[tuple[str, Optional[str]], Binding] = {} 2868 def _interrupts(node: dtlib_Node) -> list[tuple[dtlib_Node, bytes]]: 2878 ret: list[tuple[dtlib_Node, bytes]] = [] 2905 ) -> tuple[dtlib_Node, bytes]: 2942 ) -> tuple[dtlib_Node, bytes]: 2966 ) -> tuple[dtlib_Node, bytes]: 3141 ) -> list[Optional[tuple[dtlib_Node, bytes]]]: 3159 res: list[Optional[tuple[dtlib_Node, bytes]]] = []
|
D | dtlib.py | 348 self._label_offset_lst: list[tuple[str, int]] = [] 789 self.label2prop_offset: dict[str, tuple[Property, int]] = {} 791 self.memreserves: list[tuple[set[str], int, int]] = [] 1844 for prop in tuple(node.props.values()): 1927 for node in tuple(self.node_iter()):
|
/Zephyr-latest/doc/_extensions/zephyr/kconfig/ |
D | __init__.py | 73 def kconfig_load(app: Sphinx) -> tuple[kconfiglib.Kconfig, dict[str, str]]: 246 def get_objects(self) -> Iterable[tuple[str, str, str, str, str, int]]:
|
/Zephyr-latest/scripts/logging/dictionary/dictionary_parser/ |
D | log_parser_v1.py | 205 return tuple(args)
|
D | log_parser_v3.py | 210 return tuple(args)
|
/Zephyr-latest/tests/kernel/timer/timer_behavior/ |
D | README | 35 the external tool helper module. It should return a tuple with a dictionary
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
D | hardware_adapter.py | 64 def _prepare_runner_args(self) -> tuple[list[str], list[str]]:
|
/Zephyr-latest/doc/_extensions/zephyr/domain/ |
D | __init__.py | 1096 def get_object_synopses(self) -> Iterator[tuple[tuple[str, str], str]]:
|
/Zephyr-latest/doc/_scripts/ |
D | gen_devicetree_rest.py | 416 if isinstance(vnd, tuple):
|
/Zephyr-latest/soc/nordic/nrf54h/bicr/ |
D | bicrgen.py | 66 def _msk_pos(self, name: str) -> tuple[int, int]:
|
/Zephyr-latest/doc/develop/west/ |
D | west-apis.rst | 102 A tuple of Git version information.
|
/Zephyr-latest/doc/connectivity/networking/ |
D | net_config_guide.rst | 79 5-tuple that is used when listening or sending network traffic. Each BSD socket in the
|
/Zephyr-latest/dts/arm/microchip/ |
D | mec172x_common.dtsi | 804 /* reg tuple contains one 32-bit address cell and one
|
12