OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CustomElementDefinition
(Results
1 - 25
of
28
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition.cpp
32
#include "core/dom/custom/
CustomElementDefinition
.h"
36
PassRefPtr<
CustomElementDefinition
>
CustomElementDefinition
::create(const CustomElementDescriptor& descriptor, PassRefPtr<CustomElementLifecycleCallbacks> callbacks)
38
return adoptRef(new
CustomElementDefinition
(descriptor, callbacks));
41
CustomElementDefinition
::
CustomElementDefinition
(const CustomElementDescriptor& descriptor, PassRefPtr<CustomElementLifecycleCallbacks> callbacks)
CustomElementDefinition.h
41
class
CustomElementDefinition
FINAL : public RefCounted<
CustomElementDefinition
> {
43
static PassRefPtr<
CustomElementDefinition
> create(const CustomElementDescriptor&, PassRefPtr<CustomElementLifecycleCallbacks>);
49
CustomElementDefinition
(const CustomElementDescriptor&, PassRefPtr<CustomElementLifecycleCallbacks>);
CustomElementRegistry.h
35
#include "core/dom/custom/
CustomElementDefinition
.h"
57
CustomElementDefinition
* registerElement(Document*, CustomElementConstructorBuilder*, const AtomicString& name, CustomElement::NameSet validNames, ExceptionState&);
58
CustomElementDefinition
* find(const CustomElementDescriptor&) const;
61
typedef HashMap<CustomElementDescriptor, RefPtr<
CustomElementDefinition
> > DefinitionMap;
CustomElementRegistry.cpp
64
CustomElementDefinition
* CustomElementRegistry::registerElement(Document* document, CustomElementConstructorBuilder* constructorBuilder, const AtomicString& userSuppliedName, CustomElement::NameSet validNames, ExceptionState& exceptionState)
107
RefPtr<
CustomElementDefinition
> definition =
CustomElementDefinition
::create(descriptor, lifecycleCallbacks);
123
CustomElementDefinition
* CustomElementRegistry::find(const CustomElementDescriptor& descriptor) const
CustomElement.h
34
#include "core/dom/custom/
CustomElementDefinition
.h"
64
static void define(Element*, PassRefPtr<
CustomElementDefinition
>);
CustomElement.cpp
95
void CustomElement::define(Element* element, PassRefPtr<
CustomElementDefinition
> passDefinition)
97
RefPtr<
CustomElementDefinition
> definition(passDefinition);
115
CustomElementScheduler::scheduleAttributeChangedCallback(element->
customElementDefinition
()->callbacks(), element, name, oldValue, newValue);
123
CustomElementScheduler::scheduleCallback(element->
customElementDefinition
()->callbacks(), element, CustomElementLifecycleCallbacks::AttachedCallback);
131
CustomElementScheduler::scheduleCallback(element->
customElementDefinition
()->callbacks(), element, CustomElementLifecycleCallbacks::DetachedCallback);
CustomElementRegistrationContext.cpp
40
#include "core/dom/custom/
CustomElementDefinition
.h"
56
CustomElementDefinition
* definition = m_registry.registerElement(document, constructorBuilder, type, validNames, exceptionState);
113
CustomElementDefinition
* definition = m_registry.find(descriptor);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
CustomElementConstructorBuilder.h
46
class
CustomElementDefinition
;
71
bool createConstructor(Document*,
CustomElementDefinition
*, ExceptionState&);
72
bool didRegisterDefinition(
CustomElementDefinition
*) const;
V8PerContextData.h
49
class
CustomElementDefinition
;
90
void addCustomElementBinding(
CustomElementDefinition
*, PassOwnPtr<CustomElementBinding>);
91
void clearCustomElementBinding(
CustomElementDefinition
*);
92
CustomElementBinding* customElementBinding(
CustomElementDefinition
*);
123
typedef WTF::HashMap<
CustomElementDefinition
*, OwnPtr<CustomElementBinding> > CustomElementBindingMap;
V8CustomElementLifecycleCallbacks.h
55
bool setBinding(
CustomElementDefinition
* owner, PassOwnPtr<CustomElementBinding>);
69
CustomElementDefinition
* m_owner;
V8PerContextData.cpp
135
void V8PerContextData::addCustomElementBinding(
CustomElementDefinition
* definition, PassOwnPtr<CustomElementBinding> binding)
141
void V8PerContextData::clearCustomElementBinding(
CustomElementDefinition
* definition)
148
CustomElementBinding* V8PerContextData::customElementBinding(
CustomElementDefinition
* definition)
CustomElementConstructorBuilder.cpp
47
#include "core/dom/custom/
CustomElementDefinition
.h"
171
bool CustomElementConstructorBuilder::createConstructor(Document* document,
CustomElementDefinition
* definition, ExceptionState& exceptionState)
238
bool CustomElementConstructorBuilder::didRegisterDefinition(
CustomElementDefinition
* definition) const
V8CustomElementLifecycleCallbacks.cpp
135
bool V8CustomElementLifecycleCallbacks::setBinding(
CustomElementDefinition
* owner, PassOwnPtr<CustomElementBinding> binding)
/external/chromium_org/third_party/WebKit/Source/core/dom/
ElementRareData.h
31
#include "core/dom/custom/
CustomElementDefinition
.h"
122
void setCustomElementDefinition(PassRefPtr<
CustomElementDefinition
> definition) { m_customElementDefinition = definition; }
123
CustomElementDefinition
*
customElementDefinition
() const { return m_customElementDefinition.get(); }
147
RefPtr<
CustomElementDefinition
> m_customElementDefinition;
Element.h
48
class
CustomElementDefinition
;
448
void setCustomElementDefinition(PassRefPtr<
CustomElementDefinition
>);
449
CustomElementDefinition
*
customElementDefinition
() const;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/
webcore_dom.target.darwin-arm.mk
153
third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition
.cpp \
webcore_dom.target.darwin-arm64.mk
153
third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition
.cpp \
webcore_dom.target.darwin-mips.mk
153
third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition
.cpp \
webcore_dom.target.darwin-mips64.mk
153
third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition
.cpp \
webcore_dom.target.darwin-x86.mk
153
third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition
.cpp \
webcore_dom.target.darwin-x86_64.mk
153
third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition
.cpp \
webcore_dom.target.linux-arm.mk
153
third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition
.cpp \
webcore_dom.target.linux-arm64.mk
153
third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition
.cpp \
webcore_dom.target.linux-mips.mk
153
third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition
.cpp \
webcore_dom.target.linux-mips64.mk
153
third_party/WebKit/Source/core/dom/custom/
CustomElementDefinition
.cpp \
Completed in 596 milliseconds
1
2