Home
last modified time | relevance | path

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

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bs4/tests/
H A Dtest_tree.py78 self.assertEqual(2, len(soup.find_all()))
83 self.assertEqual(2, len(soup.find_all('a')))
92 self.assertEqual(soup.find_all(string="bar"), ["bar"])
93 self.assertEqual(soup.find_all(text="bar"), ["bar"])
96 soup.find_all(text=["Foo", "bar"]), ["Foo", "bar"])
98 self.assertEqual(soup.find_all(text=re.compile('.*')),
101 self.assertEqual(soup.find_all(text=True),
107 self.assertSelects(soup.find_all('a', limit=3), ["1", "2", "3"])
108 self.assertSelects(soup.find_all('a', limit=1), ["1"])
110 soup.find_all('a', limit=10), ["1", "2", "3", "4", "5"])
[all …]
H A Dtest_html5lib.py78 self.assertEqual(2, len(soup.find_all('p')))
85 self.assertEqual(2, len(soup.find_all('p')))
96 a1, a2 = soup.find_all('a')
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/tests/browser/
H A Dtest_layerdetails_page.py79 for btn in self.find_all("dd .glyphicon-edit"):
88 for inputs in self.find_all("#layer-git input[type=text]") + \
89 self.find_all("dd textarea"):
103 for save_btn in self.find_all(".change-btn"):
115 for inputs in self.find_all('#layer-git input[type="text"]') + \
116 self.find_all('dd textarea'):
H A Dtest_builddashboard_page.py168 return self.find_all('#errors div.alert-danger')
303 left_panel = self.find_all('#nav')
306 build_summary = self.find_all('[data-role="build-summary-heading"]')
315 left_panel = self.find_all('#nav')
318 build_summary = self.find_all('[data-role="build-summary-heading"]')
327 errors = self.find_all('#errors div.alert-danger')
334 warnings = self.find_all('#warnings div.alert-warning')
H A Dtest_all_builds_page.py74 build_time_spans = self.find_all(selector)
84 rows = self.find_all('#allbuildstable tr')
136 run_again_button = self.find_all(selector)
142 run_again_button = self.find_all(selector)
161 cells = self.find_all('#allbuildstable td[class="project"]')
H A Dtest_landing_page.py53 elements = self.find_all('#allbuildstable')
71 elements = self.find_all('#projectstable')
90 elements = self.find_all('#allbuildstable')
H A Dtest_toastertable_ui.py97 rows = self.find_all(row_selector)
124 rows = self.find_all(row_selector)
144 rows = self.find_all(row_selector)
H A Dtest_project_builds_page.py83 return self.find_all('#projectbuildstable tbody tr')
144 tabs = self.find_all('#project-topbar')
154 tabs = self.find_all('#project-topbar')
H A Dselenium_helpers_base.py158 def find_all(self, selector): member in SeleniumTestCaseBase
167 return len(self.find_all(selector)) == 1
H A Dtest_all_projects_page.py66 rows = self.find_all('#projectstable tbody tr')
86 rows = self.find_all('#projectstable tbody tr')
H A Dtest_builddashboard_page_artifacts.py110 sdk_artifact_links = self.find_all('[data-links="sdk-artifacts"] li')
184 self.find_all('[data-links="kernel-artifacts"] li')
H A Dtest_js_unit_tests.py40 failed_tests = self.find_all("li .fail .test-message")
H A Dtest_project_config_page.py93 checkboxes = self.find_all(checkboxes_selector)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/algorithm/string/
H A Dsplit.hpp62 inline SequenceSequenceT& find_all( in find_all() function
155 using algorithm::find_all;
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bs4/
H A Delement.py987 return self.find_all(*args, **kwargs)
1237 l = self.find_all(name, attrs, recursive, text, 1, **kwargs)
1243 def find_all(self, name=None, attrs={}, recursive=True, text=None, member in Tag
1259 findAll = find_all # BS3
1260 findChildren = find_all # BS2
H A 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()
/OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/grub/files/
H A Ddeterminism.patch32 for value in defn.find_all(group + suffix):
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A Dwget.py479 for line in soup.find_all('a', href=True):
527 for line in soup.find_all('a', href=True):
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Ddistro_check.py19 for line in soup.find_all('a', href=True):