Searched refs:find_all (Results 1 – 14 of 14) sorted by relevance
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/tests/ |
D | test_tree.py | 76 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 …]
|
D | test_html5lib.py | 78 self.assertEqual(2, len(soup.find_all('p'))) 85 self.assertEqual(2, len(soup.find_all('p')))
|
/external/pcre/dist/ |
D | pcredemo.c | 55 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/ |
D | index.rst | 127 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/ |
D | meta.py | 72 for node in ast.find_all((nodes.Extends, nodes.FromImport, nodes.Import,
|
D | nodes.py | 181 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):
|
D | compiler.py | 776 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):
|
D | ext.py | 484 for node in node.find_all(nodes.Call):
|
/external/chromium-trace/catapult/catapult_build/ |
D | html_checks.py | 57 for link in soup.find_all('link'):
|
D | js_checks.py | 204 script_elements = soup.find_all('script', src=None)
|
/external/autotest/client/cros/cellular/mbim_compliance/ |
D | mbim_device_context.py | 109 find_all=1,
|
/external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/ |
D | element.py | 935 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/ |
D | response.py | 197 for element in self.html.find_all(tag):
|
/external/chromium-trace/catapult/third_party/beautifulsoup4/ |
D | NEWS.txt | 22 * 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()
|