OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HTMLCollection
(Results
1 - 25
of
130
) sorted by null
1
2
3
4
5
6
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDataListElement.idl
32
readonly attribute
HTMLCollection
options;
HTMLMapElement.idl
22
readonly attribute
HTMLCollection
areas;
HTMLNameCollection.h
26
#include "core/html/
HTMLCollection
.h"
31
class HTMLNameCollection : public
HTMLCollection
{
HTMLFormControlsCollection.idl
25
] interface HTMLFormControlsCollection :
HTMLCollection
{
HTMLDataListOptionsCollection.h
8
#include "core/html/
HTMLCollection
.h"
13
class HTMLDataListOptionsCollection : public
HTMLCollection
{
21
HTMLOptionElement* item(unsigned offset) const { return toHTMLOptionElement(
HTMLCollection
::item(offset)); }
26
:
HTMLCollection
(ownerNode, DataListOptions, DoesNotOverrideItemAfter)
HTMLCollection.idl
26
] interface
HTMLCollection
{
HTMLTableRowsCollection.h
32
#include "core/html/
HTMLCollection
.h"
40
class HTMLTableRowsCollection FINAL : public
HTMLCollection
{
44
HTMLTableRowElement* item(unsigned offset) const { return toHTMLTableRowElement(
HTMLCollection
::item(offset)); }
HTMLNameCollection.cpp
31
:
HTMLCollection
(document, type, DoesNotOverrideItemAfter)
HTMLTableRowElement.h
47
PassRefPtrWillBeRawPtr<
HTMLCollection
> cells();
HTMLCollection.cpp
25
#include "core/html/
HTMLCollection
.h"
166
HTMLCollection
::
HTMLCollection
(ContainerNode& ownerNode, CollectionType type, ItemAfterOverrideType itemAfterOverrideType)
173
PassRefPtrWillBeRawPtr<
HTMLCollection
>
HTMLCollection
::create(ContainerNode& base, CollectionType type)
175
return adoptRefWillBeNoop(new
HTMLCollection
(base, type, DoesNotOverrideItemAfter));
178
HTMLCollection
::~
HTMLCollection
()
183
// Named
HTMLCollection
types remove cache by themselves.
189
void
HTMLCollection
::invalidateCache(Document* oldDocument) cons
[
all
...]
HTMLCollection.h
34
class
HTMLCollection
: public RefCountedWillBeGarbageCollectedFinalized<
HTMLCollection
>, public ScriptWrappable, public LiveNodeListBase {
36
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(
HTMLCollection
);
43
static PassRefPtrWillBeRawPtr<
HTMLCollection
> create(ContainerNode& base, CollectionType);
44
virtual ~
HTMLCollection
();
71
HTMLCollection
(ContainerNode& base, CollectionType, ItemAfterOverrideType);
152
mutable CollectionItemsCache<
HTMLCollection
, Element> m_collectionItemsCache;
155
DEFINE_TYPE_CASTS(
HTMLCollection
, LiveNodeListBase, collection, isHTMLCollectionType(collection->type()), isHTMLCollectionType(collection.type()));
157
inline void
HTMLCollection
::invalidateCacheForAttribute(const QualifiedName* attrName) const
HTMLFieldSetElement.idl
27
readonly attribute
HTMLCollection
elements;
HTMLFormControlsCollection.h
28
#include "core/html/
HTMLCollection
.h"
40
class HTMLFormControlsCollection FINAL : public
HTMLCollection
{
47
HTMLElement* item(unsigned offset) const { return toHTMLElement(
HTMLCollection
::item(offset)); }
HTMLOptionsCollection.h
27
#include "core/html/
HTMLCollection
.h"
34
class HTMLOptionsCollection FINAL : public
HTMLCollection
{
39
HTMLOptionElement* item(unsigned offset) const { return toHTMLOptionElement(
HTMLCollection
::item(offset)); }
HTMLTableSectionElement.idl
26
readonly attribute
HTMLCollection
rows;
HTMLAllCollection.h
29
#include "core/html/
HTMLCollection
.h"
33
class HTMLAllCollection FINAL : public
HTMLCollection
{
HTMLMapElement.h
44
PassRefPtrWillBeRawPtr<
HTMLCollection
> areas();
HTMLTableSectionElement.cpp
33
#include "core/html/
HTMLCollection
.h"
59
RefPtrWillBeRawPtr<
HTMLCollection
> children = rows();
76
RefPtrWillBeRawPtr<
HTMLCollection
> children = rows();
96
PassRefPtrWillBeRawPtr<
HTMLCollection
> HTMLTableSectionElement::rows()
98
return ensureCachedCollection<
HTMLCollection
>(TSectionRows);
HTMLMapElement.cpp
31
#include "core/html/
HTMLCollection
.h"
72
RefPtrWillBeRawPtr<
HTMLCollection
> images = document().images();
114
PassRefPtrWillBeRawPtr<
HTMLCollection
> HTMLMapElement::areas()
116
return ensureCachedCollection<
HTMLCollection
>(MapAreas);
/external/chromium_org/third_party/WebKit/public/web/
WebElementCollection.h
45
class
HTMLCollection
;
71
WebElementCollection(const PassRefPtrWillBeRawPtr<
HTMLCollection
>&);
72
WebElementCollection& operator=(const PassRefPtrWillBeRawPtr<
HTMLCollection
>&);
76
WebPrivatePtr<
HTMLCollection
> m_private;
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ShadowRoot.idl
37
HTMLCollection
getElementsByClassName([Default=Undefined] optional DOMString className);
38
HTMLCollection
getElementsByTagName([Default=Undefined] optional DOMString tagName);
39
HTMLCollection
getElementsByTagNameNS([Default=Undefined] optional DOMString? namespaceURI,
/external/chromium_org/third_party/WebKit/Source/web/
WebElementCollection.cpp
36
#include "core/html/
HTMLCollection
.h"
52
WebElementCollection::WebElementCollection(const PassRefPtrWillBeRawPtr<
HTMLCollection
>& col)
57
WebElementCollection& WebElementCollection::operator=(const PassRefPtrWillBeRawPtr<
HTMLCollection
>& col)
/external/chromium_org/third_party/WebKit/Source/core/dom/
ClassCollection.cpp
39
:
HTMLCollection
(rootNode, ClassCollectionType, DoesNotOverrideItemAfter)
ParentNode.idl
35
[PerWorldBindings] readonly attribute
HTMLCollection
children;
TagCollection.cpp
33
:
HTMLCollection
(rootNode, type, DoesNotOverrideItemAfter)
Completed in 606 milliseconds
1
2
3
4
5
6