Home
last modified time | relevance | path

Searched refs:old_child (Results 1 – 4 of 4) sorted by relevance

/external/protobuf/python/
Dstubout.py119 old_child = getattr(parent, child_name)
123 old_child = staticmethod(old_child)
125 self.cache.append((parent, old_child, child_name))
138 for (parent, old_child, child_name) in self.cache:
139 setattr(parent, child_name, old_child)
/external/tensorflow/tensorflow/python/platform/
Dgoogletest.py276 old_child = getattr(parent, child_name)
280 old_child = staticmethod(old_child)
282 self.cache.append((parent, old_child, child_name))
296 for (parent, old_child, child_name) in reversed(self.cache):
297 setattr(parent, child_name, old_child)
/external/dtc/
Dlivetree.c140 struct node *new_child, *old_child; in merge_nodes() local
199 for_each_child_withdel(old_node, old_child) { in merge_nodes()
200 if (streq(old_child->name, new_child->name)) { in merge_nodes()
201 merge_nodes(old_child, new_child); in merge_nodes()
/external/mesa3d/src/compiler/spirv/
Dvtn_variables.c177 nir_deref *old_child = tail->child; in _vtn_local_load_store() local
227 tail->child = old_child; in _vtn_local_load_store()