OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HTMLOptionsCollection
(Results
1 - 16
of
16
) sorted by null
/external/webkit/WebCore/html/
HTMLOptionsCollection.h
36
class
HTMLOptionsCollection
: public HTMLCollection {
38
static PassRefPtr<
HTMLOptionsCollection
> create(PassRefPtr<HTMLSelectElement>);
50
HTMLOptionsCollection
(PassRefPtr<HTMLSelectElement>);
HTMLOptionsCollection.cpp
22
#include "
HTMLOptionsCollection
.h"
30
HTMLOptionsCollection
::
HTMLOptionsCollection
(PassRefPtr<HTMLSelectElement> select)
35
PassRefPtr<
HTMLOptionsCollection
>
HTMLOptionsCollection
::create(PassRefPtr<HTMLSelectElement> select)
37
return adoptRef(new
HTMLOptionsCollection
(select));
40
void
HTMLOptionsCollection
::add(PassRefPtr<HTMLOptionElement> element, ExceptionCode &ec)
45
void
HTMLOptionsCollection
::add(PassRefPtr<HTMLOptionElement> element, int index, ExceptionCode &ec)
70
void
HTMLOptionsCollection
::remove(int index)
75
int
HTMLOptionsCollection
::selectedIndex() cons
[
all
...]
HTMLOptionsCollection.idl
23
// FIXME: The W3C spec says that
HTMLOptionsCollection
should not have a parent class.
27
]
HTMLOptionsCollection
: HTMLCollection {
HTMLSelectElement.h
35
class
HTMLOptionsCollection
;
57
PassRefPtr<
HTMLOptionsCollection
> options();
HTMLSelectElement.idl
48
readonly attribute
HTMLOptionsCollection
options;
HTMLSelectElement.cpp
33
#include "
HTMLOptionsCollection
.h"
254
PassRefPtr<
HTMLOptionsCollection
> HTMLSelectElement::options()
256
return
HTMLOptionsCollection
::create(this);
/external/webkit/WebCore/bindings/js/
JSHTMLOptionsCollectionCustom.cpp
26
#include "
HTMLOptionsCollection
.h"
40
HTMLOptionsCollection
* imp = static_cast<
HTMLOptionsCollection
*>(impl());
46
HTMLOptionsCollection
* imp = static_cast<
HTMLOptionsCollection
*>(impl());
65
HTMLOptionsCollection
* imp = static_cast<
HTMLOptionsCollection
*>(impl());
72
HTMLOptionsCollection
* imp = static_cast<
HTMLOptionsCollection
*>(impl());
93
HTMLOptionsCollection
* imp = static_cast<HTMLOptionsCollection*>(impl())
[
all
...]
JSHTMLCollectionCustom.cpp
25
#include "
HTMLOptionsCollection
.h"
51
// FIXME: HTML5 specifies that non-
HTMLOptionsCollection
collections should return
144
wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject,
HTMLOptionsCollection
, collection);
/external/webkit/WebCore/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp
34
#include "
HTMLOptionsCollection
.h"
49
INC_STATS("DOM.
HTMLOptionsCollection
.remove()");
50
HTMLOptionsCollection
* imp = V8HTMLOptionsCollection::toNative(args.Holder());
57
INC_STATS("DOM.
HTMLOptionsCollection
.add()");
62
HTMLOptionsCollection
* imp = V8HTMLOptionsCollection::toNative(args.Holder());
90
INC_STATS("DOM.
HTMLOptionsCollection
.length._get");
91
HTMLOptionsCollection
* imp = V8HTMLOptionsCollection::toNative(info.Holder());
98
INC_STATS("DOM.
HTMLOptionsCollection
.length._set");
99
HTMLOptionsCollection
* imp = V8HTMLOptionsCollection::toNative(info.Holder());
119
INC_STATS("DOM.
HTMLOptionsCollection
.IndexedPropertyGetter")
[
all
...]
V8HTMLSelectElementCustom.cpp
36
#include "
HTMLOptionsCollection
.h"
62
PassRefPtr<
HTMLOptionsCollection
> collection = select->options();
/external/webkit/WebCore/bindings/objc/
DOMUtility.mm
108
WRAP(
HTMLOptionsCollection
)
125
// This must be after the
HTMLOptionsCollection
check, because it's a subclass in the JavaScript
/external/webkit/WebCore/bindings/v8/
V8DOMWrapper.h
68
class
HTMLOptionsCollection
;
V8Index.h
377
V(
HTMLOPTIONSCOLLECTION
,
HTMLOptionsCollection
) \
[
all
...]
/external/webkit/WebKit/win/
DOMHTMLClasses.cpp
42
#include <WebCore/
HTMLOptionsCollection
.h>
138
DOMHTMLOptionsCollection::DOMHTMLOptionsCollection(WebCore::
HTMLOptionsCollection
* collection)
143
IDOMHTMLOptionsCollection* DOMHTMLOptionsCollection::createInstance(WebCore::
HTMLOptionsCollection
* collection)
[
all
...]
DOMHTMLClasses.h
37
class
HTMLOptionsCollection
;
104
static IDOMHTMLOptionsCollection* createInstance(WebCore::
HTMLOptionsCollection
*);
159
DOMHTMLOptionsCollection(WebCore::
HTMLOptionsCollection
*);
161
RefPtr<WebCore::
HTMLOptionsCollection
> m_collection;
[
all
...]
/external/webkit/WebCore/
Android.mk
258
html/
HTMLOptionsCollection
.cpp \
Completed in 427 milliseconds