Home
last modified time | relevance | path

Searched refs:old_node (Results 1 – 15 of 15) sorted by relevance

/external/v8/src/debug/
Dliveedit.js94 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/
Dlocked-queue-inl.h33 Node* old_node = nullptr;
36 old_node = cur_node;
38 delete old_node;
/external/python/cpython2/Lib/
Dast.py113 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/
Dast.py118 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/
Dlivetree.c137 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()
Ddtc.h205 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/
Dmkl_layout_pass.cc913 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/
Dnir_lower_io_to_temporaries.c48 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/
Dtransform_utils.cc446 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/
Darithmetic_optimizer.h73 void AddFrameControlDeps(const NodeDef* old_node,
Darithmetic_optimizer.cc540 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.py125 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/
Dpywrap-test.py1011 (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/
Dast.rst156 .. 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/
Dast.rst169 .. function:: copy_location(new_node, old_node)
171 Copy source location (:attr:`lineno` and :attr:`col_offset`) from *old_node*