Home
last modified time | relevance | path

Searched refs:ElementWrapper (Results 1 – 25 of 102) sorted by relevance

12345

/dports/net/kf5-syndication/syndication-5.89.0/src/
H A Delementwrapper.cpp20 class ElementWrapper::ElementWrapperPrivate
31 ElementWrapper::ElementWrapper() in ElementWrapper() function in Syndication::ElementWrapper
38 ElementWrapper::ElementWrapper(const ElementWrapper &other) in ElementWrapper() function in Syndication::ElementWrapper
43 ElementWrapper::ElementWrapper(const QDomElement &element) in ElementWrapper() function in Syndication::ElementWrapper
52 ElementWrapper::~ElementWrapper() in ~ElementWrapper()
56 ElementWrapper &ElementWrapper::operator=(const ElementWrapper &other) in operator =()
62 bool ElementWrapper::operator==(const ElementWrapper &other) const in operator ==()
67 bool ElementWrapper::isNull() const in isNull()
77 QString ElementWrapper::xmlBase() const in xmlBase()
169 ElementWrapper wrapper(parent); in childNodesAsXML()
[all …]
H A Delementwrapper.h29 class SYNDICATION_EXPORT ElementWrapper
36 ElementWrapper();
42 ElementWrapper(const ElementWrapper &other);
48 ElementWrapper(const QDomElement &element); // implicit
53 virtual ~ElementWrapper();
62 ElementWrapper &operator=(const ElementWrapper &other);
69 bool operator==(const ElementWrapper &other) const;
/dports/textproc/py-cssselect2/cssselect2-0.4.1/tests/
H A Dtest_cssselect2.py12 from cssselect2 import ElementWrapper, SelectorError, compile_selector_list
64 root = ElementWrapper.from_xml_root(TEST_DOCUMENT)
78 assert not ElementWrapper.from_xml_root(doc).matches(':lang(fr)')
85 root = ElementWrapper.from_xml_root(doc, content_language='en')
93 root = ElementWrapper.from_xml_root(doc, content_language='en')
97 root = ElementWrapper.from_xml_root(doc, content_language='en')
100 root = ElementWrapper.from_xml_root(doc, content_language='en, es')
103 root = ElementWrapper.from_xml_root(doc)
107 root = ElementWrapper.from_html_root(doc)
111 root = ElementWrapper.from_xml_root(doc)
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/style/invalidation/element/
H A Delement_wrapper.rs66 pub struct ElementWrapper<'a, E> struct
75 impl<'a, E> ElementWrapper<'a, E> argument
81 ElementWrapper { in new()
137 impl<'a, E> fmt::Debug for ElementWrapper<'a, E> implementation
147 impl<'a, E> Element for ElementWrapper<'a, E> implementation
275 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in parent_element()
280 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in first_child_element()
285 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in last_child_element()
290 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in prev_sibling_element()
295 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in next_sibling_element()
[all …]
/dports/devel/folly/folly-2021.12.27.00/folly/detail/
H A DThreadLocalDetail.cpp256 std::vector<ElementWrapper> elements; in destroy()
309 for (ElementWrapper& elem : elements) { in destroy()
319 ElementWrapper* StaticMetaBase::reallocate( in reallocate()
335 ElementWrapper* reallocated = nullptr; in reallocate()
343 size_t newByteSize = nallocx(newCapacity * sizeof(ElementWrapper), 0); in reallocate()
360 ((reallocated = static_cast<ElementWrapper*>( in reallocate()
366 assert(newByteSize / sizeof(ElementWrapper) >= newCapacity); in reallocate()
367 newCapacity = newByteSize / sizeof(ElementWrapper); in reallocate()
375 reallocated = static_cast<ElementWrapper*>( in reallocate()
376 calloc(newCapacity, sizeof(ElementWrapper))); in reallocate()
[all …]
/dports/games/fs2open/fs2open.github.com-release_21_4_1/lib/libRocket/Source/Controls/Python/
H A DElementInterface.cpp58 …class_definitions["DataGrid"] = python::class_< ElementDataGrid, Core::Python::ElementWrapper< Ele… in InitialisePythonInterface()
67 …s["DataGridRow"] = python::class_< ElementDataGridRow, Core::Python::ElementWrapper< ElementDataGr… in InitialisePythonInterface()
79 …"DataGridCell"] = python::class_< ElementDataGridCell, Core::Python::ElementWrapper< ElementDataGr… in InitialisePythonInterface()
83 …xpand"] = python::class_< ElementDataGridExpandButton, Core::Python::ElementWrapper< ElementDataGr… in InitialisePythonInterface()
87 …class_definitions["Form"] = python::class_< ElementForm,Core::Python::ElementWrapper< ElementForm … in InitialisePythonInterface()
93 …python::class_< ElementFormControl, Core::Python::ElementWrapper< ElementFormControl >, boost::non… in InitialisePythonInterface()
100 …trolInput"] = python::class_< ElementFormControlInput, Core::Python::ElementWrapper< ElementFormCo… in InitialisePythonInterface()
110 …extArea"] = python::class_< ElementFormControlTextArea,Core::Python::ElementWrapper< ElementFormCo… in InitialisePythonInterface()
119 …olSelect"] = python::class_< ElementFormControlSelect, Core::Python::ElementWrapper< ElementFormCo… in InitialisePythonInterface()
128 …lect"] = python::class_< ElementFormControlDataSelect, Core::Python::ElementWrapper< ElementFormCo… in InitialisePythonInterface()
[all …]
/dports/net/kf5-syndication/syndication-5.89.0/src/rss2/
H A Dtools_p.cpp21 QString extractContent(const ElementWrapper &wrapper) in extractContent()
36 return ElementWrapper::childNodesAsXML(list.first()).trimmed(); in extractContent()
42 return ElementWrapper::childNodesAsXML(list.first()).trimmed(); in extractContent()
H A Dtools_p.h17 class ElementWrapper; variable
28 QString extractContent(const ElementWrapper &parent);
H A Dsource.cpp18 : ElementWrapper() in Source()
23 : ElementWrapper(element) in Source()
H A Dcategory.cpp18 : ElementWrapper() in Category()
23 : ElementWrapper(element) in Category()
H A Denclosure.cpp15 : ElementWrapper() in Enclosure()
20 : ElementWrapper(element) in Enclosure()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/lib/libRocket/Include/Rocket/Core/Python/
H A DElementWrapper.h46 class ElementWrapper : public T
49 ElementWrapper( PyObject* self, const char* tag ) : self( self ), T( tag ) in ElementWrapper() function
61 virtual ~ElementWrapper() {} in ~ElementWrapper()
/dports/www/firefox-esr/firefox-91.8.0/servo/components/style/invalidation/element/
H A Delement_wrapper.rs82 pub struct ElementWrapper<'a, E> struct
91 impl<'a, E> ElementWrapper<'a, E> argument
97 ElementWrapper { in new()
153 impl<'a, E> fmt::Debug for ElementWrapper<'a, E> implementation
163 impl<'a, E> Element for ElementWrapper<'a, E> implementation
400 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in pseudo_element_originating_element()
406 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in assigned_slot()
/dports/www/firefox/firefox-99.0/servo/components/style/invalidation/element/
H A Delement_wrapper.rs82 pub struct ElementWrapper<'a, E> struct
91 impl<'a, E> ElementWrapper<'a, E> argument
97 ElementWrapper { in new()
153 impl<'a, E> fmt::Debug for ElementWrapper<'a, E> implementation
163 impl<'a, E> Element for ElementWrapper<'a, E> implementation
378 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in pseudo_element_originating_element()
384 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in assigned_slot()
/dports/mail/thunderbird/thunderbird-91.8.0/servo/components/style/invalidation/element/
H A Delement_wrapper.rs82 pub struct ElementWrapper<'a, E> struct
91 impl<'a, E> ElementWrapper<'a, E> argument
97 ElementWrapper { in new()
153 impl<'a, E> fmt::Debug for ElementWrapper<'a, E> implementation
163 impl<'a, E> Element for ElementWrapper<'a, E> implementation
400 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in pseudo_element_originating_element()
406 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in assigned_slot()
/dports/lang/spidermonkey78/firefox-78.9.0/servo/components/style/invalidation/element/
H A Delement_wrapper.rs81 pub struct ElementWrapper<'a, E> struct
90 impl<'a, E> ElementWrapper<'a, E> impl
96 ElementWrapper { in new()
152 impl<'a, E> fmt::Debug for ElementWrapper<'a, E> implementation
162 impl<'a, E> Element for ElementWrapper<'a, E> implementation
400 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in pseudo_element_originating_element()
406 .map(|e| ElementWrapper::new(e, self.snapshot_map)) in assigned_slot()
/dports/net/kf5-syndication/syndication-5.89.0/src/atom/
H A Dcontent.cpp32 : ElementWrapper() in Content()
38 : ElementWrapper(element) in Content()
44 : ElementWrapper(other) in Content()
55 ElementWrapper::operator=(other); in operator =()
H A Datomtools.h15 class ElementWrapper; variable
33 QString extractAtomText(const Syndication::ElementWrapper &parent, const QString &tagname);
H A Dcategory.cpp19 : ElementWrapper() in Category()
24 : ElementWrapper(element) in Category()
H A Dperson.cpp18 : ElementWrapper() in Person()
23 : ElementWrapper(element) in Person()
H A Dgenerator.cpp18 : ElementWrapper() in Generator()
23 : ElementWrapper(element) in Generator()
H A Datomtools.cpp21 QString extractAtomText(const Syndication::ElementWrapper &parent, const QString &tagname) in extractAtomText()
41 str = ElementWrapper::childNodesAsXML(el).trimmed(); in extractAtomText()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DElementWrapper.java54 final class ElementWrapper implements ParsedElementAnnotation { class
57 public ElementWrapper(Element e) { in ElementWrapper() method in ElementWrapper
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/
H A DElementWrapper.java54 final class ElementWrapper implements ParsedElementAnnotation { class
57 public ElementWrapper(Element e) { in ElementWrapper() method in ElementWrapper
/dports/textproc/py-nltk/nltk-3.4.1/nltk/
H A Dinternals.py906 class ElementWrapper(object): class
925 if isinstance(etree, ElementWrapper):
928 return object.__new__(ElementWrapper)
1006 return ElementWrapper(self._etree[index])
1009 return [ElementWrapper(elt) for elt in self._etree[start:stop]]
1012 return [ElementWrapper(elt) for elt in self._etree]
1015 return (ElementWrapper(elt) for elt in self._etree.getiterator(tag))
1018 return ElementWrapper(self._etree.makeelement(tag, attrib))
1025 return ElementWrapper(elt)
1028 return [ElementWrapper(elt) for elt in self._etree.findall(path)]

12345