Home
last modified time | relevance | path

Searched refs:next_siblings (Results 1 – 25 of 40) sorted by relevance

12

/dports/databases/p5-DBIx-Class/DBIx-Class-0.082842/lib/DBIx/Class/
H A DOrdered.pm183 sub next_siblings { subroutine
247 my $nsib = $self->next_siblings->search(
267 my $lsib = $self->next_siblings->search(
280 my $cursor = $self->next_siblings->search(
/dports/games/solarus/solarus-f43727b232b3ed13d98440a845e2a29e470e4f0d/work/ZBStudioPlugin/
H A Dscrap_doc.py151 for i in el.next_siblings:
158 for i in el.next_siblings:
173 return (s for s in el.next_siblings if s.name == tag_name)
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/html5ever-0.13.1/scripts/
H A Dextract-from-spec.py50 for sib in sec.next_siblings:
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/can/usb/peak_usb/
H A Dpcan_usb_core.h133 struct peak_usb_device *next_siblings; member
H A Dpcan_usb_core.c853 (dev->prev_siblings)->next_siblings = dev; in peak_usb_create_dev()
918 dev->next_siblings = NULL; in peak_usb_disconnect()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/can/usb/peak_usb/
H A Dpcan_usb_core.h133 struct peak_usb_device *next_siblings; member
H A Dpcan_usb_core.c853 (dev->prev_siblings)->next_siblings = dev; in peak_usb_create_dev()
918 dev->next_siblings = NULL; in peak_usb_disconnect()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/can/usb/peak_usb/
H A Dpcan_usb_core.h133 struct peak_usb_device *next_siblings; member
H A Dpcan_usb_core.c853 (dev->prev_siblings)->next_siblings = dev; in peak_usb_create_dev()
918 dev->next_siblings = NULL; in peak_usb_disconnect()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/beautifulsoup4/bs4/
H A Delement.py404 self.next_siblings, **kwargs)
522 def next_siblings(self): member in PageElement
631 return self.next_siblings
1299 recursive_candidate_generator = lambda tag: tag.next_siblings
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/roxmltree-0.9.1/src/
H A Dlib.rs995 self.next_siblings().filter(|n| n.is_element()).nth(0) in next_sibling_element()
1046 pub fn next_siblings(&self) -> NextSiblings<'a, 'input> { in next_siblings() method
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/bs4/
H A Delement.py422 self.next_siblings, **kwargs)
558 def next_siblings(self): member in PageElement
591 return self.next_siblings
/dports/www/py-beautifulsoup/beautifulsoup4-4.10.0/doc.zh/source/
H A Dindex.rst827 .next_siblings 和 .previous_siblings
830 通过 ``.next_siblings`` 和 ``.previous_siblings`` 属性可以对当前节点的兄弟节点迭代输出:
834 for sibling in soup.a.next_siblings:
1399 这2个方法通过 `.next_siblings`_ 属性对当tag的所有后面解析 [5]_ 的兄弟tag节点进行迭代, ``find_next_siblings()`` 方法返回所有符合条件的后面的…
2647 * ``nextSiblingGenerator()`` -> ``next_siblings``
2715 .. _.next_siblings: `.next_siblings 和 .previous_siblings`_
2716 .. _.previous_siblings: `.next_siblings 和 .previous_siblings`_
/dports/textproc/sigil/Sigil-1.8.0/src/Resource_Files/plugin_launchers/python/sigil_bs4/
H A Delement.py461 self.next_siblings, **kwargs)
583 def next_siblings(self): member in PageElement
692 return self.next_siblings
1795 recursive_candidate_generator = lambda tag: tag.next_siblings
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/roxmltree-0.13.0/src/
H A Dlib.rs1123 self.next_siblings().skip(1).find(|n| n.is_element()) in next_sibling_element()
1174 pub fn next_siblings(&self) -> AxisIter<'a, 'input> { in next_siblings() method
/dports/devel/texlab/texlab-3.3.0/cargo-crates/roxmltree-0.13.1/src/
H A Dlib.rs1125 self.next_siblings().skip(1).find(|n| n.is_element()) in next_sibling_element()
1176 pub fn next_siblings(&self) -> AxisIter<'a, 'input> { in next_siblings() method
/dports/www/zola/zola-0.15.2/cargo-crates/roxmltree-0.13.1/src/
H A Dlib.rs1125 self.next_siblings().skip(1).find(|n| n.is_element())
1176 pub fn next_siblings(&self) -> AxisIter<'a, 'input> {
/dports/multimedia/tautulli/Tautulli-2.8.0/lib/bs4/
H A Delement.py629 self.next_siblings, **kwargs)
846 def next_siblings(self): member in PageElement
905 return self.next_siblings
/dports/www/py-beautifulsoup/beautifulsoup4-4.10.0/bs4/
H A Delement.py629 self.next_siblings, **kwargs)
846 def next_siblings(self): member in PageElement
905 return self.next_siblings
/dports/www/googler/googler-4.3.2/
H A Dgoogler388 next_siblings = self.next_siblings()
389 if next_siblings:
390 return next_siblings[0]
394 def next_siblings(self) -> List["Node"]:
406 for sibling in self.next_siblings():
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/py3only/docutils/writers/latex2e/
H A D__init__.py1722 next_siblings = node.traverse(descend=False, siblings=True,
1724 if len(next_siblings) > 1:
1725 next = next_siblings[0]
1728 if next_siblings[1].__class__ == node.__class__:
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/py2only/docutils/writers/latex2e/
H A D__init__.py1719 next_siblings = node.traverse(descend=False, siblings=True,
1721 if len(next_siblings) > 1:
1722 next = next_siblings[0]
1725 if next_siblings[1].__class__ == node.__class__:
/dports/databases/p5-DBIx-Class-Tree-NestedSet/DBIx-Class-Tree-NestedSet-0.10/lib/DBIx/Class/Tree/
H A DNestedSet.pm738 *next_siblings = \&right_siblings;
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stubs/beautifulsoup4/bs4/
H A Delement.pyi159 def next_siblings(self) -> Iterable[PageElement]: ...
/dports/www/py-beautifulsoup/beautifulsoup4-4.10.0/doc.ru/source/
H A Dbs4ru.rst933 ``.next_siblings`` и ``.previous_siblings``
936 Вы можете перебрать одноуровневые элементы данного тега с помощью ``.next_siblings`` или
939 for sibling in soup.a.next_siblings:
1591 Эти методы используют :ref:`.next_siblings <sibling-generators>` для
3238 * ``nextSiblingGenerator()`` -> ``next_siblings``

12