/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/v8/src/ |
D | locked-queue-inl.h | 33 Node* old_node = nullptr; 36 old_node = cur_node; 38 delete old_node;
|
/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/python/cpython3/Lib/ |
D | ast.py | 118 def copy_location(new_node, old_node): argument 124 if attr in old_node._attributes and attr in new_node._attributes \ 125 and hasattr(old_node, attr): 126 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 | 205 struct node *merge_nodes(struct node *old_node, struct node *new_node); 206 void add_orphan_node(struct node *old_node, struct node *new_node, char *ref);
|
/external/tensorflow/tensorflow/core/graph/ |
D | mkl_layout_pass.cc | 913 NodeBuilder* nb, Node* old_node, 1128 NodeBuilder* nb, Node* old_node, in SetUpContiguousInputs() argument 1142 if (old_node->type_string() == csinfo_.conv2d_grad_input) { in SetUpContiguousInputs() 1147 old_node->input_node(kConv2DBackpropInputFilterInputSlotIdx, &filter_node); in SetUpContiguousInputs() 1174 int old_node_input_slots = old_node->op_def().input_arg_size(); in SetUpContiguousInputs() 1186 const OpDef::ArgDef& arg = old_node->op_def().input_arg(on_slot_idx); in SetUpContiguousInputs() 1189 int N = GetTensorListLength(arg, old_node); in SetUpContiguousInputs() 1225 const OpDef::ArgDef& arg = old_node->op_def().input_arg(on_slot_idx); in SetUpContiguousInputs() 1228 int N = GetTensorListLength(arg, old_node); in SetUpContiguousInputs() 1229 GetNodesProducingMklTensorList(g, old_node, old_node_inputs, &iidx, N, in SetUpContiguousInputs() [all …]
|
/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/tensorflow/tensorflow/tools/graph_transforms/ |
D | transform_utils.cc | 446 for (const NodeDef& old_node : old_nodes) { in ReplaceMatchingOpTypes() local 448 *added_node = old_node; in ReplaceMatchingOpTypes() 539 for (const NodeDef& old_node : old_nodes) { in CopyOriginalMatch() local 540 new_nodes->push_back(old_node); in CopyOriginalMatch()
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | arithmetic_optimizer.h | 73 void AddFrameControlDeps(const NodeDef* old_node,
|
D | arithmetic_optimizer.cc | 540 const NodeDef* old_node, const std::vector<NodeDef*>& new_nodes, in AddFrameControlDeps() argument 543 const auto frame_it = frame_map_.find(old_node); in AddFrameControlDeps()
|
/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/cpython3/Doc/library/ |
D | ast.rst | 156 .. function:: copy_location(new_node, old_node) 158 Copy source location (:attr:`lineno` and :attr:`col_offset`) from *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*
|