HomeSort by relevance Sort by last modified time
    Searched full:m_prototype (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementConstructorBuilder.cpp 72 ASSERT(m_prototype.IsEmpty());
84 m_prototype = prototypeScriptValue.v8Value().As<v8::Object>();
86 m_prototype = v8::Object::New(m_scriptState->isolate());
89 m_prototype->SetPrototype(basePrototype);
157 ASSERT(!m_prototype.IsEmpty());
168 m_callbacks = V8CustomElementLifecycleCallbacks::create(m_scriptState.get(), m_prototype, created, attached, detached, attributeChanged);
174 v8::Handle<v8::Value> value = m_prototype->Get(v8String(isolate, name));
182 ASSERT(!m_prototype.IsEmpty());
220 m_constructor->Set(prototypeKey, m_prototype);
224 m_constructor->ForceSet(prototypeKey, m_prototype, v8::PropertyAttribute(v8::ReadOnly | v8::DontEnum | v8::DontDelete))
    [all...]
CustomElementBinding.cpp 43 , m_prototype(isolate, prototype)
46 ASSERT(!m_prototype.isEmpty());
CustomElementBinding.h 48 v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); }
55 ScopedPersistent<v8::Object> m_prototype; member in class:WebCore::CustomElementBinding
V8CustomElementLifecycleCallbacks.cpp 97 , m_prototype(scriptState->isolate(), prototype)
103 m_prototype.setWeak(&m_prototype, weakCallback<v8::Object>);
171 v8::Handle<v8::Object> prototype = m_prototype.newLocal(isolate);
CustomElementConstructorBuilder.h 86 v8::Handle<v8::Object> m_prototype; member in class:WebCore::CustomElementConstructorBuilder
V8CustomElementLifecycleCallbacks.h 71 ScopedPersistent<v8::Object> m_prototype; member in class:WebCore::FINAL

Completed in 96 milliseconds