Home
last modified time | relevance | path

Searched refs:replace_with (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Delement.py219 def replace_with(self, replace_with): argument
224 if replace_with is self:
226 if replace_with is self.parent:
231 old_parent.insert(my_index, replace_with)
233 replaceWith = replace_with # BS3
250 me = self.replace_with(wrap_inside)
H A Ddammit.py122 replace_with = """
123 value = value.replace('"', replace_with)
/openbmc/openbmc/poky/bitbake/lib/bs4/builder/
H A D_html5lib.py180 old_element.replace_with(new_element)
246 old_node.replace_with(new_str)
/openbmc/openbmc/poky/bitbake/lib/bs4/tests/
H A Dtest_tree.py769 new_a = a.replace_with(soup.c)
785 self.assertRaises(ValueError, a.replace_with, soup.c)
791 soup.c.replace_with(c)
797 self.assertRaises(ValueError, soup.b.replace_with, soup.a)
821 soup.find(text="Argh!").replace_with("Hooray!")
951 show.replace_with(no)
965 soup.b.replace_with(soup.c)
971 soup.c.replace_with(soup.b)
982 remove_tag.replace_with(move_tag)
/openbmc/linux/rust/alloc/vec/
H A Dmod.rs3184 pub fn splice<R, I>(&mut self, range: R, replace_with: I) -> Splice<'_, I::IntoIter, A> in splice()
3189 Splice { drain: self.drain(range), replace_with: replace_with.into_iter() } in splice()