Home
last modified time | relevance | path

Searched refs:find_all (Results 1 – 14 of 14) sorted by relevance

/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/tests/
Dtest_tree.py76 self.assertEqual(2, len(soup.find_all()))
81 self.assertEqual(2, len(soup.find_all('a')))
90 self.assertEqual(soup.find_all(text="bar"), [u"bar"])
93 soup.find_all(text=["Foo", "bar"]), [u"Foo", u"bar"])
95 self.assertEqual(soup.find_all(text=re.compile('.*')),
98 self.assertEqual(soup.find_all(text=True),
104 self.assertSelects(soup.find_all('a', limit=3), ["1", "2", "3"])
105 self.assertSelects(soup.find_all('a', limit=1), ["1"])
107 soup.find_all('a', limit=10), ["1", "2", "3", "4", "5"])
111 soup.find_all('a', limit=0), ["1", "2", "3", "4", "5"])
[all …]
Dtest_html5lib.py78 self.assertEqual(2, len(soup.find_all('p')))
85 self.assertEqual(2, len(soup.find_all('p')))
/external/pcre/dist/
Dpcredemo.c55 int find_all; in main() local
73 find_all = 0; in main()
76 if (strcmp(argv[i], "-g") == 0) find_all = 1; in main()
256 if (!find_all) /* Check for -g */ in main()
/external/chromium-trace/catapult/third_party/beautifulsoup4/doc/source/
Dindex.rst127 soup.find_all('a')
137 for link in soup.find_all('a'):
592 methods described in `Searching the tree`_, such as `find_all()`::
594 soup.find_all('a')
987 the two most popular methods: ``find()`` and ``find_all()``. The other
1010 By passing in a filter to an argument like ``find_all()``, you can
1016 Before talking in detail about ``find_all()`` and similar methods, I
1032 soup.find_all('b')
1049 for tag in soup.find_all(re.compile("^b")):
1056 for tag in soup.find_all(re.compile("t")):
[all …]
/external/opencv3/3rdparty/jinja2/
Dmeta.py72 for node in ast.find_all((nodes.Extends, nodes.FromImport, nodes.Import,
Dnodes.py181 for result in self.find_all(node_type):
184 def find_all(self, node_type): member in Node
191 for result in child.find_all(node_type):
Dcompiler.py776 for block in node.find_all(nodes.Block):
782 for import_ in node.find_all(nodes.ImportedName):
1072 for name in node.find_all(nodes.Name):
Dext.py484 for node in node.find_all(nodes.Call):
/external/chromium-trace/catapult/catapult_build/
Dhtml_checks.py57 for link in soup.find_all('link'):
Djs_checks.py204 script_elements = soup.find_all('script', src=None)
/external/autotest/client/cros/cellular/mbim_compliance/
Dmbim_device_context.py109 find_all=1,
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/
Delement.py935 return self.find_all(*args, **kwargs)
1159 l = self.find_all(name, attrs, recursive, text, 1, **kwargs)
1165 def find_all(self, name=None, attrs={}, recursive=True, text=None, member in Tag
1181 findAll = find_all # BS3
1182 findChildren = find_all # BS2
/external/chromium-trace/catapult/third_party/webtest/webtest/
Dresponse.py197 for element in self.html.find_all(tag):
/external/chromium-trace/catapult/third_party/beautifulsoup4/
DNEWS.txt22 * Fixed a bug that caused the optimized version of find_all() to
60 * All find_all calls should now return a ResultSet object. Patch by
318 * Fixed a bug that caused calling a tag to sometimes call find_all()