/arkcompiler/ets_frontend/es2panda/ir/ |
H A D | astDump.cpp | 37 Wrap([this, node]() -> void { in SerializeNode() 180 Wrap([this, &props]() -> void { in SerializePropList() 192 Wrap( in SerializeArray() 213 Wrap([this, object]() -> void { in SerializeObject() 219 void AstDumper::Wrap(const WrapperCb &cb, char delimStart, char delimEnd) in Wrap() function in panda::es2panda::ir::AstDumper 241 Wrap([this, &loc]() -> void { in SerializeLoc() 254 Wrap([this, &loc]() -> void { in SerializeSourcePosition()
|
H A D | astDump.h | 196 void Wrap(const WrapperCb &cb, char delimStart = '{', char delimEnd = '}');
|
/arkcompiler/ets_frontend/ets2panda/ir/ |
H A D | astDump.cpp | 189 Wrap([this, &props]() -> void { in SerializePropList() 202 Wrap( in SerializeArray() 220 Wrap([this, object]() -> void { in SerializeObject() 228 void AstDumper::Wrap(const WrapperCb &cb, char delimStart, char delimEnd) in Wrap() function in ark::es2panda::ir::AstDumper 245 Wrap([this, &loc]() -> void { in SerializeLoc() 258 Wrap([this, &loc]() -> void { in SerializeSourcePosition()
|
H A D | astDump.h | 238 void Wrap(const WrapperCb &cb, char delimStart = '{', char delimEnd = '}');
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/ |
H A D | debug_types.py | 72 class Wrap(Generic[T]): class 103 class PropertyDescriptor(Wrap[runtime.PropertyDescriptor]): 128 class RemoteObject(Wrap[runtime.RemoteObject]): 170 class Scope(Wrap[debugger.Scope]): 178 class Frame(Wrap[debugger.CallFrame]): 194 class Paused(Wrap[debugger.Paused]):
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ |
H A D | js_refconvert.h | 39 napi_value Wrap(InteropCtx *ctx, EtsObject *obj) in Wrap() function in ark::ets::interop::js::JSRefConvert 72 using WrapT = decltype(&JSRefConvert::Wrap);
|
H A D | intrinsics_api_impl.cpp | 78 auto result = refconv->Wrap(ctx, v); in JSRuntimeNewJSValueObject() 518 napi_value res = JSConvertJSValue::Wrap(env, value); in CompilerConvertRefTypeToLocal() 526 napi_value res = JSConvertString::Wrap(env, value); in CompilerConvertRefTypeToLocal() 534 auto res = refconv->Wrap(ctx, EtsObject::FromCoreType(ref)); in CompilerConvertRefTypeToLocal() 650 completionValue = refconv->Wrap(ctx, value); in SettleJsPromise()
|
H A D | js_convert_base.h | 71 static napi_value Wrap(napi_env env, cpptype etsVal) in Wrap() function
|
H A D | intrinsics_api_impl.h | 132 napi_value localJsValue = T::Wrap(env, etsValue); in ConvertToLocal()
|
H A D | js_refconvert_array.h | 163 jsElem = elemConv->Wrap(ctx, etsElem); in WrapImpl()
|
H A D | js_refconvert_builtin.cpp | 36 return Conv::Wrap(ctx->GetJSEnv(), FromEtsObject<ObjType>(obj)); in WrapImpl()
|
H A D | interop_context.cpp | 306 napi_value res = refconv->Wrap(this, EtsObject::FromCoreType(exc.GetPtr())); in ForwardEtsException()
|
H A D | js_convert.h | 428 completionValue = refconv->Wrap(ctx, value.GetPtr()); in JSCONVERT_WRAP()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/call/ |
H A D | call_js.cpp | 171 allJsArgs[el + jsargs.size()] = refConv->Wrap(ctx_, etsElem); in ConvertVarargsAndCall() 274 napi_value jsVal = JSConvertJSValue::Wrap(env, st->ReadFixedRefArg<JSValue>(ctx->GetJSValueClass())); in JSRuntimeCallJSQNameBase() 320 napi_value jsVal = JSConvertJSValue::Wrap(env, st->ReadFixedRefArg<JSValue>(ctx->GetJSValueClass())); in JSRuntimeCallJSBase() 369 napi_value jsFn = JSConvertJSValue::Wrap(env, st->ReadFixedRefArg<JSValue>(ctx->GetJSValueClass())); in JSRuntimeCallJSByValue() 370 napi_value jsThis = JSConvertJSValue::Wrap(env, st->ReadFixedRefArg<JSValue>(ctx->GetJSValueClass())); in JSRuntimeCallJSByValue() 389 napi_value jsThis = refconv->Wrap(ctx, EtsObject::FromCoreType(etsThis)); in CallJSProxy()
|
H A D | arg_convertors.h | 226 return setResult(Convertor::Wrap(env, value)); in ConvertRefArgToJS() 249 return setResult(refconv->Wrap(ctx, EtsObject::FromCoreType(ref))); in ConvertRefArgToJS() 261 napi_value res = Convertor::Wrap(env, readVal(helpers::TypeIdentity<cpptype>())); in ConvertArgToJS()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/ |
H A D | ets_field_wrapper.cpp | 133 return refconv->Wrap(ctx, etsValue); in Getter() 166 return Convertor::Wrap(env, etsValue); in Getter()
|
H A D | ets_class_wrapper.h | 95 napi_value Wrap(InteropCtx *ctx, EtsObject *etsObject);
|
H A D | ets_class_wrapper.cpp | 37 return etsClassWrapper_->Wrap(ctx, etsObject); in WrapImpl() 48 napi_value EtsClassWrapper::Wrap(InteropCtx *ctx, EtsObject *etsObject) in Wrap() function in ark::ets::interop::js::ets_proxy::EtsClassWrapper
|