Home
last modified time | relevance | path

Searched refs:CallAsConstructor (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/xfa/src/fxjse/src/
Dvalue.cpp517 hReturnValue = hFunctionObject->CallAsConstructor(nArgCount, lpLocalArgs); in Call()
/external/v8/include/
Dv8.h2976 Local<Value> CallAsConstructor(int argc, Local<Value> argv[]));
2977 V8_WARN_UNUSED_RESULT MaybeLocal<Value> CallAsConstructor(
/external/v8/test/cctest/
Dtest-api.cc11046 instance->CallAsConstructor(context.local(), 1, args1).ToLocalChecked(); in THREADED_TEST()
11065 instance->CallAsConstructor(context.local(), 1, args2).ToLocalChecked(); in THREADED_TEST()
11083 instance->CallAsConstructor(context.local(), 1, args3).ToLocalChecked(); in THREADED_TEST()
11094 instance->CallAsConstructor(context.local(), 1, args4).ToLocalChecked(); in THREADED_TEST()
11104 instance->CallAsConstructor(context.local(), 1, args5).ToLocalChecked(); in THREADED_TEST()
11132 CHECK(instance->CallAsConstructor(context.local(), 1, args).IsEmpty()); in THREADED_TEST()
11160 CHECK(instance->CallAsConstructor(context.local(), 1, args).IsEmpty()); in THREADED_TEST()
11189 value = instance1->CallAsConstructor(context.local(), 1, args1) in THREADED_TEST()
11211 value = instance2->CallAsConstructor(context.local(), 1, args2) in THREADED_TEST()
/external/v8/src/
Dapi.cc4305 MaybeLocal<Value> Object::CallAsConstructor(Local<Context> context, int argc, in CallAsConstructor() function in v8::Object
4321 Local<v8::Value> Object::CallAsConstructor(int argc, in CallAsConstructor() function in v8::Object
4325 RETURN_TO_LOCAL_UNCHECKED(CallAsConstructor(context, argc, argv_cast), Value); in CallAsConstructor()
/external/v8/
DChangeLog11637 Implemented CallAsConstructor method for Object in the API (Issue 1348).