Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/
Delement.py412 self.find_all_previous, name, attrs, text, **kwargs)
415 def find_all_previous(self, name=None, attrs={}, text=None, limit=None, member in PageElement
421 findAllPrevious = find_all_previous # BS3
422 fetchPrevious = find_all_previous # BS2
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/tests/
Dtest_tree.py541 self.end.find_all_previous('b'), ["Three", "Two", "One"])
542 self.assertSelects(self.end.find_all_previous(id=1), ["One"])
552 text.find_all_previous("b"), ["Three", "Two", "One"])
/external/chromium-trace/catapult/third_party/beautifulsoup4/doc/source/
Dindex.rst1587 ``find_all_previous()`` and ``find_previous()``
1590 Signature: find_all_previous(:ref:`name <name>`, :ref:`attrs <attrs>`, :ref:`text <text>`, :ref:`li…
1596 document. The ``find_all_previous()`` method returns all matches, and
1603 first_link.find_all_previous("p")
1610 The call to ``find_all_previous("p")`` found the first paragraph in
2917 * ``findAllPrevious`` -> ``find_all_previous``