OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:customelementbinding
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementBinding.cpp
32
#include "bindings/v8/
CustomElementBinding
.h"
36
PassOwnPtr<
CustomElementBinding
>
CustomElementBinding
::create(v8::Isolate* isolate, v8::Handle<v8::Object> prototype, const WrapperTypeInfo* wrapperType)
38
return adoptPtr(new
CustomElementBinding
(isolate, prototype, wrapperType));
41
CustomElementBinding
::
CustomElementBinding
(v8::Isolate* isolate, v8::Handle<v8::Object> prototype, const WrapperTypeInfo* wrapperType)
CustomElementBinding.h
42
class
CustomElementBinding
{
44
static PassOwnPtr<
CustomElementBinding
> create(v8::Isolate*, v8::Handle<v8::Object> prototype, const WrapperTypeInfo*);
46
~
CustomElementBinding
() { m_prototype.dispose(); }
52
CustomElementBinding
(v8::Isolate*, v8::Handle<v8::Object> prototype, const WrapperTypeInfo*);
V8PerContextData.h
34
#include "bindings/v8/
CustomElementBinding
.h"
158
void addCustomElementBinding(CustomElementDefinition*, PassOwnPtr<
CustomElementBinding
>);
160
CustomElementBinding
*
customElementBinding
(CustomElementDefinition*);
193
typedef WTF::HashMap<CustomElementDefinition*, OwnPtr<
CustomElementBinding
> > CustomElementBindingMap;
V8PerContextData.cpp
151
void V8PerContextData::addCustomElementBinding(CustomElementDefinition* definition, PassOwnPtr<
CustomElementBinding
> binding)
164
CustomElementBinding
* V8PerContextData::
customElementBinding
(CustomElementDefinition* definition)
CustomElementWrapper.cpp
105
CustomElementBinding
* binding = perContextData->
customElementBinding
(CustomElement::definitionFor(element.get()));
V8CustomElementLifecycleCallbacks.h
55
bool setBinding(CustomElementDefinition* owner, PassOwnPtr<
CustomElementBinding
>);
V8CustomElementLifecycleCallbacks.cpp
35
#include "bindings/v8/
CustomElementBinding
.h"
134
bool V8CustomElementLifecycleCallbacks::setBinding(CustomElementDefinition* owner, PassOwnPtr<
CustomElementBinding
> binding)
CustomElementConstructorBuilder.cpp
39
#include "bindings/v8/
CustomElementBinding
.h"
235
return m_callbacks->setBinding(definition,
CustomElementBinding
::create(m_context->GetIsolate(), m_prototype, m_wrapperType));
/external/chromium_org/third_party/WebKit/Source/bindings/
bindings.gypi
12
'v8/
CustomElementBinding
.cpp',
13
'v8/
CustomElementBinding
.h',
/external/chromium_org/third_party/WebKit/Source/core/
webcore_derived.target.darwin-arm.mk
200
third_party/WebKit/Source/bindings/v8/
CustomElementBinding
.cpp \
webcore_derived.target.darwin-mips.mk
200
third_party/WebKit/Source/bindings/v8/
CustomElementBinding
.cpp \
webcore_derived.target.darwin-x86.mk
200
third_party/WebKit/Source/bindings/v8/
CustomElementBinding
.cpp \
webcore_derived.target.linux-arm.mk
200
third_party/WebKit/Source/bindings/v8/
CustomElementBinding
.cpp \
webcore_derived.target.linux-mips.mk
200
third_party/WebKit/Source/bindings/v8/
CustomElementBinding
.cpp \
webcore_derived.target.linux-x86.mk
200
third_party/WebKit/Source/bindings/v8/
CustomElementBinding
.cpp \
Completed in 1026 milliseconds