Home
last modified time | relevance | path

Searched refs:tree (Results 1 – 14 of 14) sorted by relevance

/misc/config_tools/board_inspector/acpiparser/aml/
A Dinterpreter.py8 from .tree import Tree, Interpreter
127 def NullName(self, tree): argument
131 name = tree.value
160 def String(self, tree): argument
175 def ZeroOp(self, tree): argument
178 def OneOp(self, tree): argument
181 def OnesOp(self, tree): argument
233 def DefName(self, tree): argument
313 return Method(tree)
425 def DefAdd(self, tree): argument
[all …]
A Dvisitors.py8 from .tree import Visitor, Direction
19 def default(self, tree): argument
30 if tree.factory:
46 def f(tree): argument
55 def visit(self, tree): argument
65 if hasattr(tree, "DefElse") and tree.DefElse:
74 if hasattr(tree, "DefElse") and tree.DefElse:
118 self.visit(tree)
147 acc.extend(bytes(tree.value[:len(tree.value) - len(segs)], "ascii"))
177 assert tree.structure and isinstance(tree.structure, tuple)
[all …]
A Dparser.py15 def hook_pre(context, tree): argument
41 tree.label = self.label
53 return tree
143 return tree
162 return tree
217 return tree
247 return tree
292 return tree
364 return tree
391 return tree
[all …]
A Dtree.py61 def __visit_node(self, tree): argument
66 return fn(tree)
70 def _visit_topdown(self, tree): argument
79 def _visit_bottomup(self, tree): argument
81 for child in tree.children:
85 self.__visit_node(tree)
87 def visit(self, tree): argument
98 def __transform_node(self, tree): argument
103 return fn(tree)
105 return tree
[all …]
A Dbuilder.py8 from .tree import Tree
13 tree = Tree(label, [value])
15 tree.complete_parsing()
16 return tree
55 tree.append_child(arg)
57 tree.complete_parsing()
58 return tree
61 def aux(tree, elem, arg): argument
72 tree = Tree(label)
88 tree.complete_parsing()
[all …]
A Dcontext.py18 def __init__(self, name, tree): argument
19 self.tree = tree
27 super().__init__(name, tree)
38 def __init__(self, name, tree): argument
39 super().__init__(name, tree)
43 super().__init__(name, tree)
74 super().__init__(name, tree)
87 super().__init__(name, tree)
111 def __init__(self, name, tree): argument
276 (sym.tree and sym.tree.label != "DefExternal"):
[all …]
A Ddatatypes.py286 def __init__(self, tree): argument
287 self.tree = tree
288 self.name = tree.children[1].value
289 self.body = tree.children[3]
/misc/config_tools/board_inspector/acpiparser/
A Ddsdt.py11 from acpiparser.aml.tree import Tree
28 tree = Tree()
29 parser.AMLCode.parse(context, tree)
30 tree = parser.DeferredExpansion(context).transform(tree)
31 context.trees[os.path.basename(t)] = tree
38 for tree in context.trees.values():
39 visitor.visit(tree)
45 tree = Tree()
46 getattr(parser, label).parse(context, tree)
47 tree = parser.DeferredExpansion(context).transform(tree)
[all …]
/misc/config_tools/board_inspector/extractors/
A D50-acpi-namespace.py12 from acpiparser.aml.tree import Visitor, Direction
269 if scope_decl.tree == self.current_tree:
281 def NameString(self, tree): argument
282 self.context.change_scope(tree.scope)
285 decl = self.context.lookup_symbol(tree.value)
291 self.to_visit.add(op_region_decl.tree)
293 self.to_visit.add(decl.tree)
296 if decl.tree != self.tree_under_analysis:
379 tree = builder.build_value(result)
380 if tree:
[all …]
/misc/config_tools/acpi_gen/
A Dasl_gen.py438 tree = builder.DefDevice(
467 return tree
601 def __discard_external_objects(tree): argument
602 objects_tree = tree.TermList
604 return tree
626 ret.append(tree)
627 ret = tree.TermList.children
686 add_or_replace_object(tree,
688 objects.add_device_object(tree)
714 objects.add_device_object(tree)
[all …]
/misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-core/
A DREADME.md6 …on-schema-form/tree/master/packages/lib/vue3/vue3-form-element) 、[@lljj/vue3-form-ant](https://git…
/misc/config_tools/configurator/packages/vue-json-schema-form/vue3/vue3-form-naive/
A DREADME.md5 > 通过 [@lljj/vue3-form-core](https://github.com/lljj-x/vue-json-schema-form/tree/master/packages/lib…
/misc/config_tools/library/
A Dacrn_config_utilities.py273 tree = ET.parse(config_file)
275 root = tree.getroot()
/misc/debug_tools/acrn_crashlog/acrnprobe/
A Dconf.rst86 Also, this property helps build the crash tree in ``acrnprobe``.
103 :caption: Build crash tree in configuration

Completed in 27 milliseconds