Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/
Dstubout.py126 old_child = getattr(parent, child_name)
131 old_child = staticmethod(old_child)
133 old_child = classmethod(old_child.__func__)
135 self.cache.append((parent, old_child, child_name))
150 for (parent, old_child, child_name) in self.cache:
151 setattr(parent, child_name, old_child)
/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/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()