Home
last modified time | relevance | path

Searched refs:wrapObject (Results 1 – 13 of 13) sorted by relevance

/third_party/node/test/js-native-api/test_reference/
Dtest_reference.c202 napi_value wrapObject; in ValidateDeleteBeforeFinalize() local
204 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, &wrapObject, NULL, NULL)); in ValidateDeleteBeforeFinalize()
209 env, wrapObject, ref_t, DeleteBeforeFinalizeFinalizer, NULL, NULL)); in ValidateDeleteBeforeFinalize()
220 NODE_API_CALL(env, napi_create_reference(env, wrapObject, 0, ref_t)); in ValidateDeleteBeforeFinalize()
221 return wrapObject; in ValidateDeleteBeforeFinalize()
Dtest.js152 const wrapObject = new Object(); constant
153 test_reference.validateDeleteBeforeFinalize(wrapObject);
/third_party/node/deps/v8/src/inspector/
Dinjected-script.cc213 response = scope.injectedScript()->wrapObject(result, m_objectGroup, in thenCallback()
234 response = scope.injectedScript()->wrapObject(result, m_objectGroup, in catchCallback()
537 Response InjectedScript::wrapObject( in wrapObject() function in v8_inspector::InjectedScript
540 return wrapObject(value, groupName, wrapMode, v8::MaybeLocal<v8::Value>(), in wrapObject()
544 Response InjectedScript::wrapObject( in wrapObject() function in v8_inspector::InjectedScript
601 wrapObject(table, "console", WrapMode::kNoPreview, &remoteObject); in wrapTable()
781 wrapObject(exception, objectGroup, in addExceptionToDetails()
850 Response response = wrapObject(resultValue, objectGroup, wrapMode, result); in wrapEvaluateResult()
864 wrapObject(exception, objectGroup, in wrapEvaluateResult()
Dv8-inspector-session-impl.h62 std::unique_ptr<protocol::Runtime::RemoteObject> wrapObject(
94 std::unique_ptr<protocol::Runtime::API::RemoteObject> wrapObject(
Dv8-inspector-session-impl.cc314 V8InspectorSessionImpl::wrapObject(v8::Local<v8::Context> context, in wrapObject() function in v8_inspector::V8InspectorSessionImpl
317 return wrapObject(context, value, toString16(groupName), generatePreview); in wrapObject()
321 V8InspectorSessionImpl::wrapObject(v8::Local<v8::Context> context, in wrapObject() function in v8_inspector::V8InspectorSessionImpl
329 injectedScript->wrapObject( in wrapObject()
Dinjected-script.h98 Response wrapObject(v8::Local<v8::Value>, const String16& groupName,
101 Response wrapObject(v8::Local<v8::Value>, const String16& groupName,
Dv8-console-message.cc299 session->wrapObject(context, m_arguments[i]->Get(isolate), "console", in wrapArguments()
418 return session->wrapObject(inspectedContext->context(), in wrapException()
Dv8-debugger-agent-impl.cc291 injectedScript->wrapObject(iterator->GetObject(), kBacktraceObjectGroup, in buildScopes()
1466 injectedScript->wrapObject(receiver, kBacktraceObjectGroup, in currentCallFrames()
1509 res = injectedScript->wrapObject(returnValue, kBacktraceObjectGroup, in currentCallFrames()
1810 injectedScript->wrapObject(exception, kBacktraceObjectGroup, in didPause()
Dv8-heap-profiler-agent-impl.cc303 *result = m_session->wrapObject(creationContext, heapObject, in getObjectByHeapObjectId()
Dcustom-preview.cc122 injectedScript->wrapObject(originValue, groupName, WrapMode::kNoPreview, in substituteObjectTags()
Dv8-runtime-agent-impl.cc654 return scope.injectedScript()->wrapObject( in queryObjects()
Dv8-console.cc725 protocol::Response response = injectedScript->wrapObject( in inspectImpl()
/third_party/node/deps/v8/include/
Dv8-inspector.h196 virtual std::unique_ptr<protocol::Runtime::API::RemoteObject> wrapObject(