Searched refs:old_node (Results 1 – 12 of 12) sorted by relevance
/external/v8/src/debug/ |
D | liveedit.js | 94 function HarvestTodo(old_node) { argument 111 if (old_node.status == FunctionStatus.DAMAGED) { 112 CollectDamaged(old_node); 115 if (old_node.status == FunctionStatus.UNCHANGED) { 116 update_positions_list.push(old_node); 117 } else if (old_node.status == FunctionStatus.SOURCE_CHANGED) { 118 update_positions_list.push(old_node); 119 } else if (old_node.status == FunctionStatus.CHANGED) { 120 replace_code_list.push(old_node); 121 CollectNew(old_node.unmatched_new_nodes); [all …]
|
/external/c-ares/ |
D | ares_llist.c | 47 struct list_node* old_node) { in ares__insert_in_list() argument 48 new_node->next = old_node; in ares__insert_in_list() 49 new_node->prev = old_node->prev; in ares__insert_in_list() 50 old_node->prev->next = new_node; in ares__insert_in_list() 51 old_node->prev = new_node; in ares__insert_in_list()
|
D | ares_llist.h | 35 struct list_node* old_node);
|
/external/v8/src/ |
D | locked-queue-inl.h | 33 Node* old_node = nullptr; 36 old_node = cur_node; 38 delete old_node;
|
/external/libchrome/sandbox/linux/bpf_dsl/ |
D | policy_compiler.cc | 229 CodeGen::Node old_node = in FindRanges() local 242 if (node != old_node) { in FindRanges() 243 ranges->push_back(Range{old_sysnum, old_node}); in FindRanges() 245 old_node = node; in FindRanges() 248 ranges->push_back(Range{old_sysnum, old_node}); in FindRanges()
|
/external/python/cpython2/Lib/ |
D | ast.py | 113 def copy_location(new_node, old_node): argument 119 if attr in old_node._attributes and attr in new_node._attributes \ 120 and hasattr(old_node, attr): 121 setattr(new_node, attr, getattr(old_node, attr))
|
/external/dtc/ |
D | livetree.c | 137 struct node *merge_nodes(struct node *old_node, struct node *new_node) in merge_nodes() argument 143 old_node->deleted = 0; in merge_nodes() 147 add_label(&old_node->labels, l->label); in merge_nodes() 158 delete_property_by_name(old_node, new_prop->name); in merge_nodes() 164 for_each_property_withdel(old_node, old_prop) { in merge_nodes() 180 add_property(old_node, new_prop); in merge_nodes() 193 delete_node_by_name(old_node, new_child->name); in merge_nodes() 199 for_each_child_withdel(old_node, old_child) { in merge_nodes() 209 add_child(old_node, new_child); in merge_nodes() 216 return old_node; in merge_nodes()
|
D | dtc.h | 199 struct node *merge_nodes(struct node *old_node, struct node *new_node); 200 void add_orphan_node(struct node *old_node, struct node *new_node, char *ref);
|
/external/mesa3d/src/compiler/nir/ |
D | nir_lower_io_to_temporaries.c | 48 foreach_two_lists(new_node, new_vars, old_node, old_vars) { in emit_copies() 50 nir_variable *temp = exec_node_data(nir_variable, old_node, node); in emit_copies()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
D | _ast_util.py | 125 def copy_location(new_node, old_node): argument 131 if attr in old_node._attributes and attr in new_node._attributes \ 132 and hasattr(old_node, attr): 133 setattr(new_node, attr, getattr(old_node, attr))
|
/external/selinux/libsemanage/src/ |
D | pywrap-test.py | 1011 (status, old_node) = semanage.semanage_node_query_local(sh, key) 1042 status = semanage.semanage_node_modify_local(sh, key, old_node) 1055 if exists: semanage.semanage_node_free(old_node)
|
/external/python/cpython2/Doc/library/ |
D | ast.rst | 169 .. function:: copy_location(new_node, old_node) 171 Copy source location (:attr:`lineno` and :attr:`col_offset`) from *old_node*
|