Home
last modified time | relevance | path

Searched refs:new_child (Results 1 – 7 of 7) sorted by relevance

/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/
Delement.py272 def insert(self, position, new_child): argument
273 if new_child is self:
275 if (isinstance(new_child, basestring)
276 and not isinstance(new_child, NavigableString)):
277 new_child = NavigableString(new_child)
280 if hasattr(new_child, 'parent') and new_child.parent is not None:
283 if new_child.parent is self:
284 current_index = self.index(new_child)
291 new_child.extract()
293 new_child.parent = self
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/
Dtest-trees.rb628 new_child = new_node( new_token 5 )
631 t.replace_children(0, 0, new_child)
640 new_child = new_node( new_token 99, :text => 'c' )
641 t.replace_children(0,0,new_child)
653 new_child = new_node( new_token 99, :text => 'x' )
654 t.replace_children(1, 1, new_child)
665 new_child = new_node( new_token 99, :text => 'x' )
666 t.replace_children(0, 0, new_child)
677 new_child = new_node( new_token 99, :text => 'x' )
678 t.replace_children(2, 2, new_child)
[all …]
/external/protobuf/python/
Dstubout.py109 def Set(self, parent, child_name, new_child): argument
126 setattr(parent, child_name, new_child)
/external/chromium-trace/catapult/third_party/mox3/mox3/
Dstubout.py114 def Set(self, parent, child_name, new_child): argument
136 setattr(parent, child_name, new_child)
/external/chromium-trace/catapult/telemetry/third_party/mox3/mox3/
Dstubout.py114 def Set(self, parent, child_name, new_child): argument
136 setattr(parent, child_name, new_child)
/external/jetty/src/java/org/eclipse/jetty/util/component/
DContainer.java132 boolean new_child=true; in update()
140 new_child=false; in update()
144 if (new_child) in update()
/external/webrtc/webrtc/libjingle/xmllite/
Dxmlelement.h196 void InsertChildAfter(XmlChild* predecessor, XmlChild* new_child);