Home
last modified time | relevance | path

Searched refs:HTMLLIElement (Results 1 – 25 of 347) sorted by relevance

12345678910>>...14

/dports/www/kf5-khtml/khtml-5.89.0/src/dom/
H A Dhtml_list.cpp127 HTMLLIElement::HTMLLIElement() : HTMLElement() in HTMLLIElement() function in HTMLLIElement
131 HTMLLIElement::HTMLLIElement(const HTMLLIElement &other) : HTMLElement(other) in HTMLLIElement() function in HTMLLIElement
135 HTMLLIElement::HTMLLIElement(HTMLLIElementImpl *impl) : HTMLElement(impl) in HTMLLIElement() function in HTMLLIElement
139 HTMLLIElement &HTMLLIElement::operator = (const Node &other) in operator =()
145 HTMLLIElement &HTMLLIElement::operator = (const HTMLLIElement &other) in operator =()
151 HTMLLIElement::~HTMLLIElement() in ~HTMLLIElement()
155 DOMString HTMLLIElement::type() const in type()
163 void HTMLLIElement::setType(const DOMString &value) in setType()
170 long HTMLLIElement::value() const in value()
178 void HTMLLIElement::setValue(long _value) in setValue()
H A Dhtml_list.h136 class KHTML_EXPORT HTMLLIElement : public HTMLElement
139 HTMLLIElement();
140 HTMLLIElement(const HTMLLIElement &other);
141 HTMLLIElement(const Node &other) : HTMLElement() in HTMLLIElement() function
147 HTMLLIElement(HTMLLIElementImpl *impl);
150 HTMLLIElement &operator = (const HTMLLIElement &other);
151 HTMLLIElement &operator = (const Node &other);
153 ~HTMLLIElement();
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/html/
H A DHTMLLIElement.cpp21 HTMLLIElement::~HTMLLIElement() in ~HTMLLIElement()
25 NS_IMPL_ISUPPORTS_INHERITED(HTMLLIElement, nsGenericHTMLElement,
28 NS_IMPL_ELEMENT_CLONE(HTMLLIElement)
30 NS_IMPL_STRING_ATTR(HTMLLIElement, Type, type)
31 NS_IMPL_INT_ATTR(HTMLLIElement, Value, value)
53 HTMLLIElement::ParseAttribute(int32_t aNamespaceID, in ParseAttribute()
74 HTMLLIElement::MapAttributesIntoRule(const nsMappedAttributes* aAttributes, in MapAttributesIntoRule()
91 HTMLLIElement::IsAttributeMapped(const nsIAtom* aAttribute) const in NS_IMETHODIMP_()
107 HTMLLIElement::GetAttributeMappingFunction() const in GetAttributeMappingFunction()
113 HTMLLIElement::WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) in WrapNode()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/html/
H A DHTMLLIElement.cpp36 HTMLLIElement::HTMLLIElement(const QualifiedName& tagName, Document* document) in HTMLLIElement() function in WebCore::HTMLLIElement
43 PassRefPtr<HTMLLIElement> HTMLLIElement::create(Document* document) in create()
45 return adoptRef(new HTMLLIElement(liTag, document)); in create()
48 PassRefPtr<HTMLLIElement> HTMLLIElement::create(const QualifiedName& tagName, Document* document) in create()
50 return adoptRef(new HTMLLIElement(tagName, document)); in create()
53 bool HTMLLIElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const in mapToEntry()
63 void HTMLLIElement::parseMappedAttribute(Attribute* attr) in parseMappedAttribute()
90 void HTMLLIElement::attach() in attach()
H A DHTMLLIElement.h30 class HTMLLIElement : public HTMLElement {
32 static PassRefPtr<HTMLLIElement> create(Document*);
33 static PassRefPtr<HTMLLIElement> create(const QualifiedName&, Document*);
36 HTMLLIElement(const QualifiedName&, Document*);
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/script/dom/
H A Dhtmllielement.rs19 pub struct HTMLLIElement { struct
23 impl HTMLLIElement { argument
24 …ew_inherited(local_name: LocalName, prefix: Option<Prefix>, document: &Document) -> HTMLLIElement { in new_inherited() argument
25 HTMLLIElement { in new_inherited()
33 document: &Document) -> DomRoot<HTMLLIElement> { in new() argument
34 Node::reflect_node(Box::new(HTMLLIElement::new_inherited(local_name, prefix, document)), in new()
40 impl HTMLLIElementMethods for HTMLLIElement { implementation
48 impl VirtualMethods for HTMLLIElement { implementation
/dports/lang/spidermonkey60/firefox-60.9.0/dom/html/
H A DHTMLLIElement.cpp21 HTMLLIElement::~HTMLLIElement() {} in ~HTMLLIElement()
23 NS_IMPL_ELEMENT_CLONE(HTMLLIElement)
42 bool HTMLLIElement::ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute, in ParseAttribute()
60 void HTMLLIElement::MapAttributesIntoRule(const nsMappedAttributes* aAttributes, in MapAttributesIntoRule()
76 HTMLLIElement::IsAttributeMapped(const nsAtom* aAttribute) const { in NS_IMETHODIMP_()
90 nsMapRuleToAttributesFunc HTMLLIElement::GetAttributeMappingFunction() const { in GetAttributeMappingFunction()
94 JSObject* HTMLLIElement::WrapNode(JSContext* aCx, in WrapNode()
H A DHTMLLIElement.h17 class HTMLLIElement final : public nsGenericHTMLElement {
19 explicit HTMLLIElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo) in HTMLLIElement() function
23 NS_INLINE_DECL_REFCOUNTING_INHERITED(HTMLLIElement, nsGenericHTMLElement)
46 virtual ~HTMLLIElement();
/dports/www/firefox-esr/firefox-91.8.0/dom/html/
H A DHTMLLIElement.cpp20 HTMLLIElement::~HTMLLIElement() = default;
22 NS_IMPL_ELEMENT_CLONE(HTMLLIElement)
41 bool HTMLLIElement::ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute, in ParseAttribute()
59 void HTMLLIElement::MapAttributesIntoRule(const nsMappedAttributes* aAttributes, in MapAttributesIntoRule()
81 HTMLLIElement::IsAttributeMapped(const nsAtom* aAttribute) const { in NS_IMETHODIMP_()
96 nsMapRuleToAttributesFunc HTMLLIElement::GetAttributeMappingFunction() const { in GetAttributeMappingFunction()
100 JSObject* HTMLLIElement::WrapNode(JSContext* aCx, in WrapNode()
H A DHTMLLIElement.h17 class HTMLLIElement final : public nsGenericHTMLElement {
19 explicit HTMLLIElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo) in HTMLLIElement() function
23 NS_INLINE_DECL_REFCOUNTING_INHERITED(HTMLLIElement, nsGenericHTMLElement)
45 virtual ~HTMLLIElement();
/dports/lang/spidermonkey78/firefox-78.9.0/dom/html/
H A DHTMLLIElement.cpp21 HTMLLIElement::~HTMLLIElement() = default;
23 NS_IMPL_ELEMENT_CLONE(HTMLLIElement)
42 bool HTMLLIElement::ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute, in ParseAttribute()
60 void HTMLLIElement::MapAttributesIntoRule(const nsMappedAttributes* aAttributes, in MapAttributesIntoRule()
82 HTMLLIElement::IsAttributeMapped(const nsAtom* aAttribute) const { in NS_IMETHODIMP_()
97 nsMapRuleToAttributesFunc HTMLLIElement::GetAttributeMappingFunction() const { in GetAttributeMappingFunction()
101 JSObject* HTMLLIElement::WrapNode(JSContext* aCx, in WrapNode()
H A DHTMLLIElement.h17 class HTMLLIElement final : public nsGenericHTMLElement {
19 explicit HTMLLIElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo) in HTMLLIElement() function
23 NS_INLINE_DECL_REFCOUNTING_INHERITED(HTMLLIElement, nsGenericHTMLElement)
45 virtual ~HTMLLIElement();
/dports/www/firefox/firefox-99.0/dom/html/
H A DHTMLLIElement.cpp20 HTMLLIElement::~HTMLLIElement() = default;
22 NS_IMPL_ELEMENT_CLONE(HTMLLIElement)
41 bool HTMLLIElement::ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute, in ParseAttribute()
59 void HTMLLIElement::MapAttributesIntoRule(const nsMappedAttributes* aAttributes, in MapAttributesIntoRule()
81 HTMLLIElement::IsAttributeMapped(const nsAtom* aAttribute) const { in NS_IMETHODIMP_()
96 nsMapRuleToAttributesFunc HTMLLIElement::GetAttributeMappingFunction() const { in GetAttributeMappingFunction()
100 JSObject* HTMLLIElement::WrapNode(JSContext* aCx, in WrapNode()
H A DHTMLLIElement.h17 class HTMLLIElement final : public nsGenericHTMLElement {
19 explicit HTMLLIElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo) in HTMLLIElement() function
23 NS_INLINE_DECL_REFCOUNTING_INHERITED(HTMLLIElement, nsGenericHTMLElement)
45 virtual ~HTMLLIElement();
/dports/mail/thunderbird/thunderbird-91.8.0/dom/html/
H A DHTMLLIElement.cpp20 HTMLLIElement::~HTMLLIElement() = default;
22 NS_IMPL_ELEMENT_CLONE(HTMLLIElement)
41 bool HTMLLIElement::ParseAttribute(int32_t aNamespaceID, nsAtom* aAttribute, in ParseAttribute()
59 void HTMLLIElement::MapAttributesIntoRule(const nsMappedAttributes* aAttributes, in MapAttributesIntoRule()
81 HTMLLIElement::IsAttributeMapped(const nsAtom* aAttribute) const { in NS_IMETHODIMP_()
96 nsMapRuleToAttributesFunc HTMLLIElement::GetAttributeMappingFunction() const { in GetAttributeMappingFunction()
100 JSObject* HTMLLIElement::WrapNode(JSContext* aCx, in WrapNode()
H A DHTMLLIElement.h17 class HTMLLIElement final : public nsGenericHTMLElement {
19 explicit HTMLLIElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo) in HTMLLIElement() function
23 NS_INLINE_DECL_REFCOUNTING_INHERITED(HTMLLIElement, nsGenericHTMLElement)
45 virtual ~HTMLLIElement();
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/html/
H A Dhtml_li_element.cc35 HTMLLIElement::HTMLLIElement(Document& document) in HTMLLIElement() function in blink::HTMLLIElement
38 bool HTMLLIElement::IsPresentationAttribute(const QualifiedName& name) const { in IsPresentationAttribute()
66 void HTMLLIElement::CollectStyleForPresentationAttribute( in CollectStyleForPresentationAttribute()
81 void HTMLLIElement::ParseAttribute(const AttributeModificationParams& params) { in ParseAttribute()
90 void HTMLLIElement::AttachLayoutTree(AttachContext& context) { in AttachLayoutTree()
99 void HTMLLIElement::ParseValue(const AtomicString& value, in ParseValue()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/html/
H A Dhtml_li_element.cc35 HTMLLIElement::HTMLLIElement(Document& document) in HTMLLIElement() function in blink::HTMLLIElement
38 bool HTMLLIElement::IsPresentationAttribute(const QualifiedName& name) const { in IsPresentationAttribute()
66 void HTMLLIElement::CollectStyleForPresentationAttribute( in CollectStyleForPresentationAttribute()
81 void HTMLLIElement::ParseAttribute(const AttributeModificationParams& params) { in ParseAttribute()
90 void HTMLLIElement::AttachLayoutTree(AttachContext& context) { in AttachLayoutTree()
99 void HTMLLIElement::ParseValue(const AtomicString& value, in ParseValue()
/dports/www/netsurf/netsurf-3.10/content/handlers/javascript/duktape/
H A DHTMLLIElement.bnd11 init HTMLLIElement(struct dom_html_element *html_li_element::html_element);
13 getter HTMLLIElement::type();
14 setter HTMLLIElement::type();
16 getter HTMLLIElement::value();
17 setter HTMLLIElement::value();
/dports/lang/v8/v8-9.6.180.12/tools/turbolizer/src/
H A Dtabs.ts29 activateTab(tab: HTMLLIElement) {
31 for (const li of this.tabBar.querySelectorAll<HTMLLIElement>("li.active")) {
41 if (!(tab instanceof HTMLLIElement)) continue;
54 public addTab(caption: string): HTMLLIElement {
63 public addTabAndContent(caption: string): [HTMLLIElement, HTMLDivElement] {
79 private moveTabDiv(tab: HTMLLIElement) {
90 const tab = document.getElementById(tabId) as HTMLLIElement;
111 const li = e.target as HTMLLIElement;
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/tools/turbolizer/src/
H A Dtabs.ts29 activateTab(tab: HTMLLIElement) {
31 for (const li of this.tabBar.querySelectorAll<HTMLLIElement>("li.active")) {
41 if (!(tab instanceof HTMLLIElement)) continue;
54 public addTab(caption: string): HTMLLIElement {
63 public addTabAndContent(caption: string): [HTMLLIElement, HTMLDivElement] {
79 private moveTabDiv(tab: HTMLLIElement) {
90 const tab = document.getElementById(tabId) as HTMLLIElement;
111 const li = e.target as HTMLLIElement;
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/tools/turbolizer/src/
H A Dtabs.ts29 activateTab(tab: HTMLLIElement) {
31 for (const li of this.tabBar.querySelectorAll<HTMLLIElement>("li.active")) {
41 if (!(tab instanceof HTMLLIElement)) continue;
54 public addTab(caption: string): HTMLLIElement {
63 public addTabAndContent(caption: string): [HTMLLIElement, HTMLDivElement] {
79 private moveTabDiv(tab: HTMLLIElement) {
90 const tab = document.getElementById(tabId) as HTMLLIElement;
111 const li = e.target as HTMLLIElement;
/dports/www/mediawiki137/mediawiki-1.37.1/vendor/wikimedia/dodo/src/
H A DHTMLLIElement.php9 class HTMLLIElement extends HTMLElement implements \Wikimedia\IDLeDOM\HTMLLIElement { class
11 use \Wikimedia\IDLeDOM\Stub\HTMLLIElement;
15 use \Wikimedia\IDLeDOM\Helper\HTMLLIElement;
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/generated/
H A DJSHTMLLIElement.cpp124 …TMLLIElement(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<HTMLLIElement> impl) in JSHTMLLIElement()
149 HTMLLIElement* imp = static_cast<HTMLLIElement*>(castedThis->impl()); in jsHTMLLIElementType()
159 HTMLLIElement* imp = static_cast<HTMLLIElement*>(castedThis->impl()); in jsHTMLLIElementValue()
179 HTMLLIElement* imp = static_cast<HTMLLIElement*>(castedThis->impl()); in setJSHTMLLIElementType()
187 HTMLLIElement* imp = static_cast<HTMLLIElement*>(castedThis->impl()); in setJSHTMLLIElementValue()
/dports/lang/spidermonkey60/firefox-60.9.0/servo/components/script/dom/webidls/
H A DHTMLLIElement.webidl7 interface HTMLLIElement : HTMLElement {
14 // https://html.spec.whatwg.org/multipage/#HTMLLIElement-partial
15 partial interface HTMLLIElement {

12345678910>>...14