Searched refs:subnode (Results 1 – 25 of 30) sorted by relevance
12
/external/dtc/tests/ |
D | test_tree1_delete.dts | 8 nonexistant-subnode { 16 subnode@1 { 25 /delete-node/ nonexistant-subnode; 27 subnode@1 { 43 subnode@1 { 49 subnode@1 {
|
D | test_tree1_merge.dts | 12 subnode@1 { 25 subnode@2 { 40 subnode@1 { 43 subnode@2 {
|
D | test_tree1_merge_path.dts | 14 subnode@1 { 28 subnode@2 { 46 &{/subnode@2/subsubnode@0} {
|
D | test_tree1_wrong1.dts | 12 subnode@1 { 26 subnode@2 {
|
D | test_tree1_wrong2.dts | 12 subnode@1 { 26 subnode@2 {
|
D | test_tree1_wrong3.dts | 13 subnode@1 { 26 subnode@2 {
|
D | test_tree1_wrong8.dts | 13 subnode@1 { 27 subnode@2 {
|
D | test_tree1_wrong5.dts | 13 subnode@1 { 27 subnode@2 {
|
D | test_tree1_wrong4.dts | 13 subnode@1 { 27 subnode@2 {
|
D | test_tree1_wrong9.dts | 14 subnode@1 { 28 subnode@2 {
|
D | test_tree1_wrong7.dts | 13 subnode@1 { 27 subnode@2 {
|
D | test_tree1_wrong6.dts | 13 subnode@1 { 28 subnode@2 {
|
D | test_tree1.dts | 14 subnode@1 { 28 subnode@2 {
|
D | test_tree1_merge_labelled.dts | 14 subnode@1 { 28 subnode@2 {
|
D | test_tree1_label_noderef.dts | 14 subnode@1 { 28 subnode@2 {
|
D | include7.dts | 1 subnode@1 {
|
D | aliases.dts | 13 sub1: subnode@1 {
|
D | include1.dts | 16 subnode@2 {
|
D | label01.dts | 46 subnode: child { label
|
/external/markdown/markdown/ |
D | treeprocessors.py | 100 def __processElementText(self, node, subnode, isText=True): argument 115 text = subnode.text 116 subnode.text = None 118 text = subnode.tail 119 subnode.tail = None 121 childResult = self.__processPlaceholders(text, subnode) 123 if not isText and node is not subnode: 124 pos = node.getchildren().index(subnode) 125 node.remove(subnode)
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
D | SafeConstructor.java | 111 for (Node subnode : vals) { in mergeNode() 112 if (!(subnode instanceof MappingNode)) { in mergeNode() 116 + subnode.getNodeId(), subnode.getStartMark()); in mergeNode() 118 MappingNode mnode = (MappingNode) subnode; in mergeNode() 384 for (Node subnode : snode.getValue()) { in construct() 385 if (!(subnode instanceof MappingNode)) { in construct() 388 + subnode.getNodeId(), subnode.getStartMark()); in construct() 390 MappingNode mnode = (MappingNode) subnode; in construct() 417 for (Node subnode : snode.getValue()) { in construct() 418 if (!(subnode instanceof MappingNode)) { in construct() [all …]
|
/external/python/cpython2/Lib/lib2to3/ |
D | btm_matcher.py | 149 subnode = node.transition_table[subnode_key] 151 (node.id, subnode.id, type_repr(subnode_key), str(subnode.fixers))) 153 print(subnode.content) 154 print_node(subnode)
|
/external/dtc/ |
D | dtc-parser.y | 88 %type <node> subnode 501 | subnode subnodes 505 | subnode propdef 512 subnode: 521 | DT_LABEL subnode
|
/external/dtc/libfdt/ |
D | fdt_overlay.c | 543 int subnode; in overlay_apply_node() local 563 fdt_for_each_subnode(subnode, fdto, node) { in overlay_apply_node() 564 const char *name = fdt_get_name(fdto, subnode, NULL); in overlay_apply_node() 578 ret = overlay_apply_node(fdt, nnode, fdto, subnode); in overlay_apply_node()
|
/external/v8/src/compiler/ |
D | js-inlining.cc | 617 for (Node* subnode : inlined_nodes.reachable) { in ReduceJSCall() 620 if (subnode->op()->HasProperty(Operator::kNoThrow)) { in ReduceJSCall() 624 for (Node* use : subnode->uses()) { in ReduceJSCall() 631 DCHECK_EQ(2, subnode->op()->ControlOutputCount()); in ReduceJSCall() 632 uncaught_subcalls.push_back(subnode); in ReduceJSCall()
|
12