HomeSort by relevance Sort by last modified time
    Searched refs:instanceTemplate (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8GCForContextDispose.h 44 static V8GCForContextDispose& instanceTemplate();
V8DOMConfiguration.h 75 static inline void installAttribute(v8::Handle<ObjectOrTemplate> instanceTemplate, v8::Handle<ObjectOrTemplate> prototype, const AttributeConfiguration& attribute, v8::Isolate* isolate)
77 (attribute.onPrototype ? prototype : instanceTemplate)->SetAccessor(v8::String::NewFromUtf8(isolate, attribute.name, v8::String::kInternalizedString),
86 static inline void installAttribute(v8::Handle<ObjectOrTemplate> instanceTemplate, v8::Handle<ObjectOrTemplate> prototype, const AttributeConfiguration& attribute, v8::Isolate* isolate, WrapperWorldType currentWorldType)
96 (attribute.onPrototype ? prototype : instanceTemplate)->SetAccessor(v8::String::NewFromUtf8(isolate, attribute.name, v8::String::kInternalizedString),
V8GCForContextDispose.cpp 63 V8GCForContextDispose& V8GCForContextDispose::instanceTemplate()
V8DOMConfiguration.cpp 36 void V8DOMConfiguration::installAttributes(v8::Handle<v8::ObjectTemplate> instanceTemplate, v8::Handle<v8::ObjectTemplate> prototype, const AttributeConfiguration* attributes, size_t attributeCount, v8::Isolate* isolate, WrapperWorldType currentWorldType)
39 installAttribute(instanceTemplate, prototype, attributes[i], isolate, currentWorldType);
96 v8::Local<v8::ObjectTemplate> instanceTemplate = functionDescriptor->InstanceTemplate();
97 instanceTemplate->SetInternalFieldCount(fieldCount);
109 installAttributes(instanceTemplate, functionDescriptor->PrototypeTemplate(), attributes, attributeCount, isolate, currentWorldType);
V8PerContextData.cpp 100 v8::Local<v8::Object> instanceTemplate = V8ObjectConstructor::newInstance(function);
101 if (!instanceTemplate.IsEmpty()) {
102 m_wrapperBoilerplates.set(type, UnsafePersistent<v8::Object>(m_isolate, instanceTemplate));
103 return instanceTemplate->Clone();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLPlugInElementCustom.cpp 54 v8::Local<v8::Object> instanceTemplate = wrapper->newLocal(info.GetIsolate());
55 if (instanceTemplate.IsEmpty())
58 npObjectGetNamedProperty(instanceTemplate, name, info);
69 v8::Local<v8::Object> instanceTemplate = wrapper->newLocal(info.GetIsolate());
70 if (instanceTemplate.IsEmpty())
73 npObjectSetNamedProperty(instanceTemplate, name, value, info);
135 v8::Local<v8::Object> instanceTemplate = wrapper->newLocal(info.GetIsolate());
136 if (instanceTemplate.IsEmpty())
139 npObjectGetIndexedProperty(instanceTemplate, index, info);
150 v8::Local<v8::Object> instanceTemplate = wrapper->newLocal(info.GetIsolate())
    [all...]
V8InjectedScriptManager.cpp 61 v8::Local<v8::Object> instanceTemplate = V8ObjectConstructor::newInstance(function);
62 if (instanceTemplate.IsEmpty()) {
66 V8DOMWrapper::setNativeInfo(instanceTemplate, &V8InjectedScriptHost::wrapperTypeInfo, host);
71 data->handle.set(isolate, instanceTemplate);
73 return instanceTemplate;
V8ArrayBufferCustom.cpp 43 V8ArrayBufferDeallocationObserver* V8ArrayBufferDeallocationObserver::instanceTemplate()
76 impl->setDeallocationObserver(V8ArrayBufferDeallocationObserver::instanceTemplate());
94 V8ArrayBufferDeallocationObserver::instanceTemplate());
V8ArrayBufferCustom.h 43 static V8ArrayBufferDeallocationObserver* instanceTemplate();
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceNamedConstructor.cpp 115 v8::Local<v8::ObjectTemplate> instanceTemplate = result->InstanceTemplate();
116 instanceTemplate->SetInternalFieldCount(V8TestInterfaceNamedConstructor::internalFieldCount);
134 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
V8TestNamedConstructor.cpp 126 v8::Local<v8::ObjectTemplate> instanceTemplate = result->InstanceTemplate();
127 instanceTemplate->SetInternalFieldCount(V8TestNamedConstructor::internalFieldCount);
145 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
V8TestInterfaceDoNotCheckConstants.cpp 83 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
V8TestInterfaceEmpty.cpp 83 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
V8TestInterfaceEventTarget.cpp 83 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
V8SupportTestInterface.cpp 414 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
420 V8DOMConfiguration::installAttribute(instanceTemplate, prototypeTemplate, attributeConfiguration, isolate, currentWorldType);
472 void V8SupportTestInterface::installPerContextEnabledProperties(v8::Handle<v8::Object> instanceTemplate, SupportTestInterface* impl, v8::Isolate* isolate)
474 v8::Local<v8::Object> prototypeTemplate = v8::Local<v8::Object>::Cast(instanceTemplate->GetPrototype());
478 V8DOMConfiguration::installAttribute(instanceTemplate, prototypeTemplate, attributeConfiguration, isolate);
V8TestInterface.cpp     [all...]
V8TestException.cpp 100 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
V8TestInterfaceConstructor3.cpp 116 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
V8TestInterfaceCustomConstructor.cpp 102 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
V8TestInterfacePython2.cpp 85 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
V8TestCustomAccessors.cpp 161 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
163 functionTemplate->InstanceTemplate()->SetIndexedPropertyHandler(TestCustomAccessorsV8Internal::indexedPropertyGetterCallback, TestCustomAccessorsV8Internal::indexedPropertySetterCallback, 0, TestCustomAccessorsV8Internal::indexedPropertyDeleterCallback, 0);
164 functionTemplate->InstanceTemplate()->SetNamedPropertyHandler(TestCustomAccessorsV8Internal::namedPropertyGetterCallback, TestCustomAccessorsV8Internal::namedPropertySetterCallback, TestCustomAccessorsV8Internal::namedPropertyQueryCallback, TestCustomAccessorsV8Internal::namedPropertyDeleterCallback, TestCustomAccessorsV8Internal::namedPropertyEnumeratorCallback);
V8TestInterfaceConstructor.cpp 162 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
V8TestInterfaceConstructor2.cpp 151 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
V8TestInterfacePython.cpp 187 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();
189 functionTemplate->InstanceTemplate()->SetCallAsFunctionHandler(V8TestInterfacePython::legacyCallCustom);
V8TestNode.cpp 172 v8::Local<v8::ObjectTemplate> ALLOW_UNUSED instanceTemplate = functionTemplate->InstanceTemplate();

Completed in 368 milliseconds

1 2