Home
last modified time | relevance | path

Searched refs:HTMLOListElement (Results 1 – 25 of 321) sorted by relevance

12345678910>>...13

/dports/www/kf5-khtml/khtml-5.89.0/src/dom/
H A Dhtml_list.cpp237 HTMLOListElement::HTMLOListElement() : HTMLElement() in HTMLOListElement() function in HTMLOListElement
241 HTMLOListElement::HTMLOListElement(const HTMLOListElement &other) : HTMLElement(other) in HTMLOListElement() function in HTMLOListElement
245 HTMLOListElement::HTMLOListElement(HTMLOListElementImpl *impl) : HTMLElement(impl) in HTMLOListElement() function in HTMLOListElement
249 HTMLOListElement &HTMLOListElement::operator = (const Node &other) in operator =()
255 HTMLOListElement &HTMLOListElement::operator = (const HTMLOListElement &other) in operator =()
261 HTMLOListElement::~HTMLOListElement() in ~HTMLOListElement()
265 bool HTMLOListElement::compact() const in compact()
273 void HTMLOListElement::setCompact(bool _compact) in setCompact()
284 long HTMLOListElement::start() const in start()
292 void HTMLOListElement::setStart(long _start) in setStart()
[all …]
H A Dhtml_list.h235 class KHTML_EXPORT HTMLOListElement : public HTMLElement
238 HTMLOListElement();
239 HTMLOListElement(const HTMLOListElement &other);
240 HTMLOListElement(const Node &other) : HTMLElement() in HTMLOListElement() function
245 HTMLOListElement(HTMLOListElementImpl *impl);
248 HTMLOListElement &operator = (const HTMLOListElement &other);
249 HTMLOListElement &operator = (const Node &other);
251 ~HTMLOListElement();
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/html/
H A DHTMLOListElement.cpp36 HTMLOListElement::HTMLOListElement(const QualifiedName& tagName, Document* document) in HTMLOListElement() function in WebCore::HTMLOListElement
43 PassRefPtr<HTMLOListElement> HTMLOListElement::create(Document* document) in create()
45 return adoptRef(new HTMLOListElement(olTag, document)); in create()
48 PassRefPtr<HTMLOListElement> HTMLOListElement::create(const QualifiedName& tagName, Document* docum… in create()
50 return adoptRef(new HTMLOListElement(tagName, document)); in create()
53 bool HTMLOListElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const in mapToEntry()
63 void HTMLOListElement::parseMappedAttribute(Attribute* attr) in parseMappedAttribute()
92 void HTMLOListElement::setStart(int start) in setStart()
H A DHTMLOListElement.h30 class HTMLOListElement : public HTMLElement {
32 static PassRefPtr<HTMLOListElement> create(Document*);
33 static PassRefPtr<HTMLOListElement> create(const QualifiedName&, Document*);
39 HTMLOListElement(const QualifiedName&, Document*);
/dports/www/netsurf/netsurf-3.10/content/handlers/javascript/duktape/
H A DHTMLOListElement.bnd11 init HTMLOListElement(struct dom_html_element *html_o_list_element::html_element);
13 getter HTMLOListElement::compact();
14 setter HTMLOListElement::compact();
15 getter HTMLOListElement::start();
16 setter HTMLOListElement::start();
17 getter HTMLOListElement::type();
18 setter HTMLOListElement::type();
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/html/
H A Dhtml_olist_element.cc35 HTMLOListElement::HTMLOListElement(Document& document) in HTMLOListElement() function in blink::HTMLOListElement
43 bool HTMLOListElement::IsPresentationAttribute( in IsPresentationAttribute()
50 void HTMLOListElement::CollectStyleForPresentationAttribute( in CollectStyleForPresentationAttribute()
76 void HTMLOListElement::ParseAttribute( in ParseAttribute()
98 void HTMLOListElement::setStart(int start) { in setStart()
102 void HTMLOListElement::UpdateItemValues() { in UpdateItemValues()
109 void HTMLOListElement::RecalculateItemCount() { in RecalculateItemCount()
H A Dhtml_olist_element.h30 class HTMLOListElement final : public HTMLElement {
34 explicit HTMLOListElement(Document&);
51 const_cast<HTMLOListElement*>(this)->RecalculateItemCount(); in ItemCount()
H A Dlist_item_ordinal.cc18 return IsA<HTMLUListElement>(node) || IsA<HTMLOListElement>(node); in IsList()
32 auto* olist = DynamicTo<HTMLOListElement>(list); in IsInReversedOrderedList()
147 auto* o_list_element = DynamicTo<HTMLOListElement>(list); in CalcValue()
228 const HTMLOListElement* list_node) { in ItemCountForOrderedList()
240 const HTMLOListElement* list_node) { in InvalidateAllItemsForOrderedList()
266 if (auto* o_list_element = DynamicTo<HTMLOListElement>(list_node)) { in ItemInsertedOrRemoved()
H A Dlist_item_ordinal.h14 class HTMLOListElement; variable
47 static unsigned ItemCountForOrderedList(const HTMLOListElement*);
50 static void InvalidateAllItemsForOrderedList(const HTMLOListElement*);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/html/
H A Dhtml_olist_element.cc35 HTMLOListElement::HTMLOListElement(Document& document) in HTMLOListElement() function in blink::HTMLOListElement
43 bool HTMLOListElement::IsPresentationAttribute( in IsPresentationAttribute()
50 void HTMLOListElement::CollectStyleForPresentationAttribute( in CollectStyleForPresentationAttribute()
76 void HTMLOListElement::ParseAttribute( in ParseAttribute()
98 void HTMLOListElement::setStart(int start) { in setStart()
102 void HTMLOListElement::UpdateItemValues() { in UpdateItemValues()
109 void HTMLOListElement::RecalculateItemCount() { in RecalculateItemCount()
H A Dhtml_olist_element.h30 class HTMLOListElement final : public HTMLElement {
34 explicit HTMLOListElement(Document&);
51 const_cast<HTMLOListElement*>(this)->RecalculateItemCount(); in ItemCount()
H A Dlist_item_ordinal.h37 class HTMLOListElement; variable
69 static unsigned ItemCountForOrderedList(const HTMLOListElement*);
72 static void InvalidateAllItemsForOrderedList(const HTMLOListElement*);
H A Dlist_item_ordinal.cc41 return IsA<HTMLUListElement>(node) || IsA<HTMLOListElement>(node); in IsList()
164 auto* o_list_element = DynamicTo<HTMLOListElement>(list); in CalcValue()
245 const HTMLOListElement* list_node) { in ItemCountForOrderedList()
257 const HTMLOListElement* list_node) { in InvalidateAllItemsForOrderedList()
283 if (auto* o_list_element = DynamicTo<HTMLOListElement>(list_node)) { in ItemInsertedOrRemoved()
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/script/dom/
H A Dhtmlolistelement.rs14 pub struct HTMLOListElement { struct
18 impl HTMLOListElement { implementation
21 document: &Document) -> HTMLOListElement { in new_inherited() argument
22 HTMLOListElement { in new_inherited()
30 document: &Document) -> DomRoot<HTMLOListElement> { in new() argument
31 Node::reflect_node(Box::new(HTMLOListElement::new_inherited(local_name, prefix, document)), in new()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/generated/
H A DJSHTMLOListElement.cpp125 …stElement(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<HTMLOListElement> impl) in JSHTMLOListElement()
150 HTMLOListElement* imp = static_cast<HTMLOListElement*>(castedThis->impl()); in jsHTMLOListElementCompact()
160 HTMLOListElement* imp = static_cast<HTMLOListElement*>(castedThis->impl()); in jsHTMLOListElementStart()
170 HTMLOListElement* imp = static_cast<HTMLOListElement*>(castedThis->impl()); in jsHTMLOListElementType()
190 HTMLOListElement* imp = static_cast<HTMLOListElement*>(castedThis->impl()); in setJSHTMLOListElementCompact()
198 HTMLOListElement* imp = static_cast<HTMLOListElement*>(castedThis->impl()); in setJSHTMLOListElementStart()
206 HTMLOListElement* imp = static_cast<HTMLOListElement*>(castedThis->impl()); in setJSHTMLOListElementType()
/dports/www/mediawiki137/mediawiki-1.37.1/vendor/wikimedia/dodo/src/
H A DHTMLOListElement.php9 class HTMLOListElement extends HTMLElement implements \Wikimedia\IDLeDOM\HTMLOListElement { class
11 use \Wikimedia\IDLeDOM\Stub\HTMLOListElement;
15 use \Wikimedia\IDLeDOM\Helper\HTMLOListElement;
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/script/dom/webidls/
H A DHTMLOListElement.webidl7 interface HTMLOListElement : HTMLElement {
18 // https://html.spec.whatwg.org/multipage/#HTMLOListElement-partial
19 partial interface HTMLOListElement {
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/gnu/xml/dom/html2/
H A DDomHTMLOListElement.java40 import org.w3c.dom.html2.HTMLOListElement;
49 implements HTMLOListElement
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/gnu/xml/dom/html2/
H A DDomHTMLOListElement.java40 import org.w3c.dom.html2.HTMLOListElement;
49 implements HTMLOListElement
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/gnu/xml/dom/html2/
H A DDomHTMLOListElement.java40 import org.w3c.dom.html2.HTMLOListElement;
49 implements HTMLOListElement
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/gnu/xml/dom/html2/
H A DDomHTMLOListElement.java40 import org.w3c.dom.html2.HTMLOListElement;
49 implements HTMLOListElement
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/gnu/xml/dom/html2/
H A DDomHTMLOListElement.java40 import org.w3c.dom.html2.HTMLOListElement;
49 implements HTMLOListElement
/dports/java/sablevm-classpath/sablevm-classpath-1.13/gnu/xml/dom/html2/
H A DDomHTMLOListElement.java40 import org.w3c.dom.html2.HTMLOListElement;
49 implements HTMLOListElement
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/esm/components/html/
H A Dhtml.d.ts13 …const OL: React.FunctionComponent<React.HTMLProps<HTMLOListElement> & IElementRefProps<HTMLOListEl…
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/lib/esnext/components/html/
H A Dhtml.d.ts13 …const OL: React.FunctionComponent<React.HTMLProps<HTMLOListElement> & IElementRefProps<HTMLOListEl…

12345678910>>...13