constructor       590 Source/bindings/templates/interface.cpp static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
constructor       592 Source/bindings/templates/interface.cpp     {% for constructor in constructors %}
constructor       593 Source/bindings/templates/interface.cpp     if ({{constructor.overload_resolution_expression}}) {
constructor       594 Source/bindings/templates/interface.cpp         {{cpp_class}}V8Internal::constructor{{constructor.overload_index}}(info);
constructor       619 Source/bindings/templates/interface.cpp static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
constructor       835 Source/bindings/templates/interface.cpp     {{cpp_class}}V8Internal::constructor(info);
constructor      1290 Source/bindings/templates/interface.cpp        object in the V8 heap, not in the ArrayBuffer constructor itself.
constructor       109 Source/bindings/templates/interface_base.cpp {% for constructor in constructors %}
constructor       110 Source/bindings/templates/interface_base.cpp {{generate_constructor(constructor)}}
constructor       374 Source/bindings/templates/methods.cpp {% macro generate_constructor(constructor) %}
constructor       375 Source/bindings/templates/methods.cpp static void constructor{{constructor.overload_index}}(const v8::FunctionCallbackInfo<v8::Value>& info)
constructor       378 Source/bindings/templates/methods.cpp     {% if constructor.has_exception_state %}
constructor       381 Source/bindings/templates/methods.cpp     {% if interface_length and not constructor.overload_index %}
constructor       384 Source/bindings/templates/methods.cpp         {{throw_arity_type_error(constructor, interface_length)}};
constructor       388 Source/bindings/templates/methods.cpp     {% for argument in constructor.arguments %}
constructor       389 Source/bindings/templates/methods.cpp     {{generate_argument(constructor, argument) | indent}}
constructor       397 Source/bindings/templates/methods.cpp     {{ref_ptr}}<{{cpp_class}}> impl = {{cpp_class}}::create({{constructor.argument_list | join(', ')}});
constructor       415 Source/bindings/templates/methods.cpp {% macro named_constructor_callback(constructor) %}
constructor       435 Source/bindings/templates/methods.cpp     {% if constructor.has_exception_state %}
constructor       438 Source/bindings/templates/methods.cpp     {% if constructor.number_of_required_arguments %}
constructor       439 Source/bindings/templates/methods.cpp     if (UNLIKELY(info.Length() < {{constructor.number_of_required_arguments}})) {
constructor       440 Source/bindings/templates/methods.cpp         {{throw_arity_type_error(constructor, constructor.number_of_required_arguments)}};
constructor       444 Source/bindings/templates/methods.cpp     {% for argument in constructor.arguments %}
constructor       445 Source/bindings/templates/methods.cpp     {{generate_argument(constructor, argument) | indent}}
constructor       447 Source/bindings/templates/methods.cpp     RefPtr<{{cpp_class}}> impl = {{cpp_class}}::createForJSConstructor({{constructor.argument_list | join(', ')}});
constructor       403 Source/bindings/tests/results/V8TestInterface2.cpp     TestInterface2V8Internal::constructor(info);
constructor       126 Source/bindings/tests/results/V8TestInterfaceConstructor.cpp     TestInterfaceConstructorV8Internal::constructor(info);
constructor       115 Source/bindings/tests/results/V8TestInterfaceConstructor2.cpp     TestInterfaceConstructor2V8Internal::constructor(info);
constructor        76 Source/bindings/tests/results/V8TestInterfaceConstructor3.cpp     TestInterfaceConstructor3V8Internal::constructor(info);
constructor       352 Source/bindings/tests/results/V8TestInterfaceEventConstructor.cpp     TestInterfaceEventConstructorV8Internal::constructor(info);
constructor       131 Source/bindings/tests/results/V8TestInterfaceWillBeGarbageCollected.cpp     TestInterfaceWillBeGarbageCollectedV8Internal::constructor(info);
constructor       166 Source/bindings/tests/results/V8TestNode.cpp     TestNodeV8Internal::constructor(info);
constructor       285 Source/bindings/tests/results/V8TestTypedefs.cpp     TestTypedefsV8Internal::constructor(info);
constructor       180 Source/bindings/v8/ScriptFunctionCall.cpp     v8::Local<v8::Function> constructor = v8::Local<v8::Function>::Cast(value);
constructor       185 Source/bindings/v8/ScriptFunctionCall.cpp     v8::Local<v8::Object> result = V8ObjectConstructor::newInstance(m_scriptState->isolate(), constructor, m_arguments.size(), info.get());
constructor       137 Source/bindings/v8/V8PerContextData.cpp     v8::Local<v8::Object> constructor = constructorForType(type);
constructor       138 Source/bindings/v8/V8PerContextData.cpp     if (constructor.IsEmpty())
constructor       140 Source/bindings/v8/V8PerContextData.cpp     return constructor->Get(v8String(m_isolate, "prototype")).As<v8::Object>();
constructor       297 Source/web/WebDocument.cpp     ScriptValue constructor = document->registerElement(NewScriptState::current(isolate), name, dictionary, exceptionState, CustomElement::EmbedderNames);
constructor       301 Source/web/WebDocument.cpp     return constructor.v8Value();
constructor        59 Source/web/tests/ListenerLeakTest.cpp int GetNumObjects(const char* constructor)
constructor        73 Source/web/tests/ListenerLeakTest.cpp         if (!strcmp(constructor, *nodeName)) {
constructor        78 Source/web/tests/ListenerLeakTest.cpp                 if (!strcmp(constructor, *constructorName))