Home
last modified time | relevance | path

Searched refs:has_node (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/scripts/dts/python-devicetree/tests/
Dtest_dtlib.py1454 assert dt.has_node(path), f"path '{path}' does not exist"
1457 assert not dt.has_node(path), f"path '{path}' exists"
2391 assert dt_copy.has_node('/node@1234')
2481 assert not dt.has_node('/chosen')
2483 assert dt.has_node('/chosen')
/Zephyr-latest/scripts/footprint/
Dsize_report693 has_node = False
699 has_node = True
702 if not has_node:
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/
Ddtlib.py848 def has_node(self, path: str) -> bool: member in DT
873 if self.has_node(new_path):
892 if not self.has_node(new_parent_path):