Home
last modified time | relevance | path

Searched refs:thisObj (Results 1 - 25 of 49) sorted by relevance

12

/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/modules/
H A Djsi_module_manager.cpp32 const shared_ptr<JsRuntime>& runtime, shared_ptr<JsValue>& thisObj, const std::string& moduleName) in InitModule()
35 void (*)(const shared_ptr<JsRuntime>& runtime, shared_ptr<JsValue>& thisObj)> in InitModule()
38 shared_ptr<JsValue>& thisObj) { InitRouterModule(runtime, thisObj); } }, in InitModule()
40 shared_ptr<JsValue>& thisObj) { InitRouterModule(runtime, thisObj); } }, in InitModule()
42 shared_ptr<JsValue>& thisObj) { InitAppModule(runtime, thisObj); } }, in InitModule()
44 shared_ptr<JsValue>& thisObj) { InitAppModule(runtime, thisObj); } }, in InitModule()
31 InitModule( const shared_ptr<JsRuntime>& runtime, shared_ptr<JsValue>& thisObj, const std::string& moduleName) InitModule() argument
[all...]
H A Djsi_curves_module.cpp27 shared_ptr<JsValue> CurvesInterpolate(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in CurvesInterpolate() argument
30 auto jsCurveString = thisObj->GetProperty(runtime, "__curveString"); in CurvesInterpolate()
32 auto curveObjFunc = thisObj->GetProperty(runtime, "__curveCustomFunc"); in CurvesInterpolate()
59 shared_ptr<JsValue> CurvesInitInternal(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in CurvesInitInternal() argument
89 shared_ptr<JsValue> CurvesInit(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in CurvesInit() argument
92 return CurvesInitInternal(runtime, thisObj, argv, argc); in CurvesInit()
95 shared_ptr<JsValue> InitCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in InitCurve() argument
98 return CurvesInitInternal(runtime, thisObj, argv, argc); in InitCurve()
101 bool CreateSpringCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in CreateSpringCurve() argument
136 bool CreateInterpolatingSpring(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in CreateInterpolatingSpring() argument
159 CreateCubicCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc, RefPtr<Curve>& curve) CreateCubicCurve() argument
188 CreateStepsCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc, RefPtr<Curve>& curve) CreateStepsCurve() argument
214 CreateSpringMotionCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc, RefPtr<Curve>& curve) CreateSpringMotionCurve() argument
245 CreateResponsiveSpringMotionCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc, RefPtr<Curve>& curve) CreateResponsiveSpringMotionCurve() argument
276 ParseCurves(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc, std::string& curveString) ParseCurves() argument
323 CurvesBezier(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) CurvesBezier() argument
330 BezierCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) BezierCurve() argument
337 CurvesSpring(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) CurvesSpring() argument
344 SpringCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) SpringCurve() argument
351 InterpolatingSpringCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) InterpolatingSpringCurve() argument
358 CurvesSteps(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) CurvesSteps() argument
365 StepsCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) StepsCurve() argument
371 CustomCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) CustomCurve() argument
378 SpringMotionCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) SpringMotionCurve() argument
385 ResponsiveSpringMotionCurve(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) ResponsiveSpringMotionCurve() argument
[all...]
H A Djsi_matrix4_module.cpp76 shared_ptr<JsValue> Combine(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in Combine() argument
87 auto objB = thisObj->GetProperty(runtime, MATRIX_4X4); in Combine()
91 thisObj->SetProperty(runtime, MATRIX_4X4, newArrayJSValue); in Combine()
92 return thisObj; in Combine()
95 shared_ptr<JsValue> Invert(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in Invert() argument
98 auto matrixArray = thisObj->GetProperty(runtime, MATRIX_4X4); in Invert()
102 thisObj->SetProperty(runtime, MATRIX_4X4, matrixArray); in Invert()
103 return thisObj; in Invert()
106 shared_ptr<JsValue> Translate(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in Translate() argument
116 auto matrixArray = thisObj in Translate()
130 Skew(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) Skew() argument
147 Scale(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) Scale() argument
182 Rotate(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) Rotate() argument
220 TransformPoint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) TransformPoint() argument
261 SetPolyToPoly(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) SetPolyToPoly() argument
339 Copy(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) Copy() argument
353 Init(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) Init() argument
367 Identity(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) Identity() argument
[all...]
H A Djsi_timer_module.cpp26 shared_ptr<JsValue> SetTimeoutOrInterval(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in SetTimeoutOrInterval() argument
61 void ClearTimeoutOrInterval(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in ClearTimeoutOrInterval() argument
87 shared_ptr<JsValue> SetTimeout(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in SetTimeout() argument
90 return SetTimeoutOrInterval(runtime, thisObj, argv, argc, false); in SetTimeout()
93 shared_ptr<JsValue> SetInterval(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in SetInterval() argument
96 return SetTimeoutOrInterval(runtime, thisObj, argv, argc, true); in SetInterval()
99 shared_ptr<JsValue> ClearTimeout(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in ClearTimeout() argument
102 ClearTimeoutOrInterval(runtime, thisObj, argv, argc); in ClearTimeout()
106 shared_ptr<JsValue> ClearInterval(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in ClearInterval() argument
109 ClearTimeoutOrInterval(runtime, thisObj, arg in ClearInterval()
[all...]
H A Djsi_app_module.cpp25 shared_ptr<JsValue> AppGetInfo(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in AppGetInfo() argument
49 shared_ptr<JsValue> AppTerminate(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in AppTerminate() argument
77 shared_ptr<JsValue> AppSetImageCacheCount(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in AppSetImageCacheCount() argument
116 const shared_ptr<JsValue>& thisObj, in AppSetImageRawDataCacheSize()
153 shared_ptr<JsValue> AppSetImageFileCacheSize(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in AppSetImageFileCacheSize() argument
167 shared_ptr<JsValue> AppRequestFullWindow(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in AppRequestFullWindow() argument
173 shared_ptr<JsValue> AppScreenOnVisible(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in AppScreenOnVisible() argument
114 AppSetImageRawDataCacheSize( const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) AppSetImageRawDataCacheSize() argument
H A Djsi_router_module.cpp53 shared_ptr<JsValue> PagePush(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in PagePush() argument
71 shared_ptr<JsValue> PageReplace(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in PageReplace() argument
89 shared_ptr<JsValue> PageBack(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in PageBack() argument
111 shared_ptr<JsValue> PageClear(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in PageClear() argument
123 shared_ptr<JsValue> PageGetLength(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in PageGetLength() argument
135 shared_ptr<JsValue> PageGetState(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in PageGetState() argument
154 shared_ptr<JsValue> PageGetParams(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in PageGetParams() argument
H A Djsi_module_manager.h36 bool InitModule(const shared_ptr<JsRuntime>& runtime, shared_ptr<JsValue>& thisObj, const std::string& moduleName);
H A Djsi_context_module.h39 const std::shared_ptr<JsValue>& thisObj, const std::vector<std::shared_ptr<JsValue>>& argv, int32_t argc);
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/engine/jsi/
H A Djsi_animation_bridge.cpp245 shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) in JsAnimationStartTimeGet()
247 if (!thisObj) { in JsAnimationStartTimeGet()
248 LOGE("JsAnimationStartTimeGet failed. thisObj is null."); in JsAnimationStartTimeGet()
251 int32_t nodeId = GetCurrentNodeId(runtime, thisObj); in JsAnimationStartTimeGet()
252 int32_t pageId = GetCurrentPageId(runtime, thisObj); in JsAnimationStartTimeGet()
273 thisObj->SetProperty(runtime, "__startTime", runtime->NewInt32(startTime)); in JsAnimationStartTimeGet()
275 shared_ptr<JsValue> jsDelay = thisObj->GetProperty(runtime, "__startTime"); in JsAnimationStartTimeGet()
282 shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) in JsAnimationStartTimeSet()
284 if (!thisObj) { in JsAnimationStartTimeSet()
285 LOGE("JsAnimationStartTimeSet failed. thisObj i in JsAnimationStartTimeSet()
244 JsAnimationStartTimeGet(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimationStartTimeGet() argument
281 JsAnimationStartTimeSet(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimationStartTimeSet() argument
310 JsAnimationPendingGet(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimationPendingGet() argument
350 JsAnimationPendingSet(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimationPendingSet() argument
356 JsAnimationPlayStateGet(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimationPlayStateGet() argument
372 JsAnimationPlayStateSet(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimationPlayStateSet() argument
549 JsAnimationPlay(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimationPlay() argument
558 JsAnimationFinish(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimationFinish() argument
567 JsAnimationPause(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimationPause() argument
576 JsAnimationCancel(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimationCancel() argument
585 JsAnimationReverse(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimationReverse() argument
[all...]
H A Djsi_animation_bridge.h33 static shared_ptr<JsValue> JsAnimationPlay(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
35 static shared_ptr<JsValue> JsAnimationFinish(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
37 static shared_ptr<JsValue> JsAnimationPause(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
39 static shared_ptr<JsValue> JsAnimationCancel(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
41 static shared_ptr<JsValue> JsAnimationReverse(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
43 static shared_ptr<JsValue> JsAnimationPlayStateGet(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
45 static shared_ptr<JsValue> JsAnimationStartTimeGet(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
47 static shared_ptr<JsValue> JsAnimationPendingGet(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
49 static shared_ptr<JsValue> JsAnimationPlayStateSet(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
51 static shared_ptr<JsValue> JsAnimationStartTimeSet(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
[all...]
H A Djsi_base_utils.h43 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc);
45 static shared_ptr<JsValue> AppInfoLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj,
48 static shared_ptr<JsValue> AppWarnLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj,
52 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc);
55 static shared_ptr<JsValue> JsDebugLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj,
58 static shared_ptr<JsValue> JsInfoLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj,
61 static shared_ptr<JsValue> JsWarnLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj,
64 static shared_ptr<JsValue> JsErrorLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj,
68 static shared_ptr<JsValue> JsTraceBegin(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj,
71 static shared_ptr<JsValue> JsTraceEnd(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj,
[all...]
H A Djsi_animator_bridge.h31 static shared_ptr<JsValue> JsAnimatorPlay(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
33 static shared_ptr<JsValue> JsAnimatorFinish(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
35 static shared_ptr<JsValue> JsAnimatorPause(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
37 static shared_ptr<JsValue> JsAnimatorCancel(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
39 static shared_ptr<JsValue> JsAnimatorReverse(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
41 static shared_ptr<JsValue> JsAnimatorUpdate(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
43 static shared_ptr<JsValue> JsAnimatorReset(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj,
H A Djsi_animator_bridge.cpp334 shared_ptr<JsValue> JsiAnimatorBridgeUtils::JsAnimatorPlay(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, in JsAnimatorPlay() argument
337 int32_t pageId = GetCurrentPageId(runtime, thisObj); in JsAnimatorPlay()
338 int32_t bridgeId = GetCurrentBridgeId(runtime, thisObj); in JsAnimatorPlay()
343 shared_ptr<JsValue> JsiAnimatorBridgeUtils::JsAnimatorFinish(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, in JsAnimatorFinish() argument
346 int32_t pageId = GetCurrentPageId(runtime, thisObj); in JsAnimatorFinish()
347 int32_t bridgeId = GetCurrentBridgeId(runtime, thisObj); in JsAnimatorFinish()
352 shared_ptr<JsValue> JsiAnimatorBridgeUtils::JsAnimatorPause(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, in JsAnimatorPause() argument
355 int32_t pageId = GetCurrentPageId(runtime, thisObj); in JsAnimatorPause()
356 int32_t bridgeId = GetCurrentBridgeId(runtime, thisObj); in JsAnimatorPause()
361 shared_ptr<JsValue> JsiAnimatorBridgeUtils::JsAnimatorCancel(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, in JsAnimatorCancel() argument
370 JsAnimatorReverse(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimatorReverse() argument
380 JsAnimatorUpdate(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimatorUpdate() argument
418 JsAnimatorReset(shared_ptr<JsRuntime> runtime, shared_ptr<JsValue> thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsAnimatorReset() argument
[all...]
H A Djsi_group_js_bridge.h122 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc);
127 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc);
H A Djsi_base_utils.cpp743 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) in AppDebugLogPrint()
750 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) in AppInfoLogPrint()
757 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) in AppWarnLogPrint()
764 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) in AppErrorLogPrint()
825 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) in JsDebugLogPrint()
831 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) in JsInfoLogPrint()
837 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) in JsWarnLogPrint()
843 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) in JsErrorLogPrint()
850 shared_ptr<JsValue> JsiBaseUtils::JsTraceBegin(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in JsTraceBegin() argument
860 shared_ptr<JsValue> JsiBaseUtils::JsTraceEnd(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in JsTraceEnd() argument
742 AppDebugLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) AppDebugLogPrint() argument
749 AppInfoLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) AppInfoLogPrint() argument
756 AppWarnLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) AppWarnLogPrint() argument
763 AppErrorLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) AppErrorLogPrint() argument
824 JsDebugLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsDebugLogPrint() argument
830 JsInfoLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsInfoLogPrint() argument
836 JsWarnLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsWarnLogPrint() argument
842 JsErrorLogPrint(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc) JsErrorLogPrint() argument
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/
H A Djs_types.cpp28 Local<JSValueRef> thisObj = info->GetThisRef(); in JsStopPropagation() local
29 auto eventInfo = static_cast<BaseEventInfo*>(panda::Local<panda::ObjectRef>(thisObj)->GetNativePointerField( in JsStopPropagation()
39 Local<JSValueRef> thisObj = info->GetThisRef(); in JsPreventDefault() local
40 auto eventInfo = static_cast<BaseEventInfo*>(panda::Local<panda::ObjectRef>(thisObj)->GetNativePointerField( in JsPreventDefault()
50 Local<JSValueRef> thisObj = info->GetThisRef(); in JsClickPreventDefault() local
51 auto eventInfo = static_cast<BaseEventInfo*>(panda::Local<panda::ObjectRef>(thisObj)->GetNativePointerField( in JsClickPreventDefault()
67 Local<JSValueRef> thisObj = info->GetThisRef(); in JsTouchPreventDefault() local
68 auto eventInfo = static_cast<BaseEventInfo*>(panda::Local<panda::ObjectRef>(thisObj)->GetNativePointerField( in JsTouchPreventDefault()
84 Local<JSValueRef> thisObj = info->GetThisRef(); in JsGetHistoricalPoints() local
85 auto eventInfo = static_cast<TouchEventInfo*>(panda::Local<panda::ObjectRef>(thisObj) in JsGetHistoricalPoints()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_mock.cpp77 const shared_ptr<JsRuntime>& runtime, shared_ptr<JsValue>& thisObj, const std::string& moduleName) in InitModule()
80 void (*)(const shared_ptr<JsRuntime>& runtime, shared_ptr<JsValue>& thisObj)> in InitModule()
83 shared_ptr<JsValue>& thisObj) { InitCurvesModule(runtime, thisObj); } }, in InitModule()
87 iter->second(runtime, thisObj); in InitModule()
94 shared_ptr<JsValue> MockRequireNativeModule(const shared_ptr<JsRuntime>& runtime, const shared_ptr<JsValue>& thisObj, in MockRequireNativeModule() argument
76 InitModule( const shared_ptr<JsRuntime>& runtime, shared_ptr<JsValue>& thisObj, const std::string& moduleName) InitModule() argument
H A Djs_view_measure_layout.cpp441 Local<JSValueRef> thisObj = runtimeCallInfo->GetThisRef(); in JSMeasure() local
442 auto ptr = static_cast<NG::MeasureLayoutChild*>(panda::Local<panda::ObjectRef>(thisObj)->GetNativePointerField( in JSMeasure()
524 Local<JSValueRef> thisObj = runtimeCallInfo->GetThisRef(); in JSLayout() local
525 auto ptr = static_cast<NG::MeasureLayoutChild*>(panda::Local<panda::ObjectRef>(thisObj)->GetNativePointerField( in JSLayout()
563 Local<JSValueRef> thisObj = runtimeCallInfo->GetThisRef(); in JSPlaceChildren() local
564 auto ptr = static_cast<NG::MeasureLayoutChild*>(panda::Local<panda::ObjectRef>(thisObj)->GetNativePointerField( in JSPlaceChildren()
599 Local<JSValueRef> thisObj = runtimeCallInfo->GetThisRef(); in JSGetMargin() local
600 auto ptr = static_cast<NG::MeasureLayoutChild*>(panda::Local<panda::ObjectRef>(thisObj)->GetNativePointerField( in JSGetMargin()
615 Local<JSValueRef> thisObj = runtimeCallInfo->GetThisRef(); in JSGetPadding() local
616 auto ptr = static_cast<NG::MeasureLayoutChild*>(panda::Local<panda::ObjectRef>(thisObj) in JSGetPadding()
633 Local<JSValueRef> thisObj = runtimeCallInfo->GetThisRef(); JSGetBorderWidth() local
[all...]
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/rdb/src/
H A Dnapi_rdb_store.cpp936 napi_value thisObj = nullptr; in IsHoldingConnection() local
937 napi_get_cb_info(env, info, nullptr, nullptr, &thisObj, nullptr); in IsHoldingConnection()
938 RdbStoreProxy *rdbStoreProxy = GetNativeInstance(env, thisObj); in IsHoldingConnection()
948 napi_value thisObj = nullptr; in IsReadOnly() local
949 napi_get_cb_info(env, info, nullptr, nullptr, &thisObj, nullptr); in IsReadOnly()
950 RdbStoreProxy *rdbStoreProxy = GetNativeInstance(env, thisObj); in IsReadOnly()
960 napi_value thisObj = nullptr; in IsMemoryRdb() local
961 napi_get_cb_info(env, info, nullptr, nullptr, &thisObj, nullptr); in IsMemoryRdb()
962 RdbStoreProxy *rdbStoreProxy = GetNativeInstance(env, thisObj); in IsMemoryRdb()
972 napi_value thisObj in GetPath() local
984 napi_value thisObj = nullptr; BeginTransaction() local
997 napi_value thisObj = nullptr; RollBack() local
1009 napi_value thisObj = nullptr; Commit() local
1057 napi_value thisObj = nullptr; IsInTransaction() local
1068 napi_value thisObj = nullptr; IsOpen() local
1079 napi_value thisObj = nullptr; GetVersion() local
[all...]
/foundation/window/window_manager/interfaces/kits/napi/screen_runtime/napi/
H A Djs_screen_listener.cpp47 JsScreenListener* thisObj = reinterpret_cast<JsScreenListener*>(obj); in CleanEnv() local
48 if (!thisObj) { in CleanEnv()
53 thisObj->env_ = nullptr; in CleanEnv()
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/common/mock/include/
H A Dnapi_async_proxy.h83 napi_value thisObj = nullptr; in ParseInputs() local
86 napi_get_cb_info(asyncContext->env, asyncContext->info, &argc, args, &thisObj, nullptr); in ParseInputs()
101 parserThis(asyncContext->env, thisObj, asyncContext); in ParseInputs()
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/dataability/include/
H A Dnapi_async_proxy.h94 napi_value thisObj = nullptr; in ParseInputs() local
97 napi_get_cb_info(asyncContext->env, asyncContext->info, &argc, args, &thisObj, nullptr); in ParseInputs()
112 parserThis(asyncContext->env, thisObj, asyncContext); in ParseInputs()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_utils_bridge.h70 Local<panda::ObjectRef> thisObj = thisRef->ToObject(vm); in GetPointerField() local
71 auto* pointer = reinterpret_cast<T*>(thisObj->GetNativePointerField(vm, 0)); in GetPointerField()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/
H A Djsi_declarative_group_js_bridge.h117 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc);
122 const shared_ptr<JsValue>& thisObj, const std::vector<shared_ptr<JsValue>>& argv, int32_t argc);
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/style_string/
H A Djs_span_string.cpp154 auto thisObj = args.This(); in Constructor() local
156 thisObj); in Constructor()
645 JsiRef<JsiObject> thisObj) in ParseJsSpanBaseVector()
682 thisObj->SetPropertyObject(key.c_str(), styleStringValue); in ParseJsSpanBaseVector()
890 auto thisObj = args.This(); in Constructor() local
892 StringUtils::ToWstring(data).length(), thisObj); in Constructor()
1081 auto thisObj = info.This(); in ReplaceSpan() local
1084 thisObj->SetPropertyObject(key.c_str(), styleValueObj); in ReplaceSpan()
1132 auto thisObj = info.This(); in AddSpan() local
1135 thisObj in AddSpan()
644 ParseJsSpanBaseVector(const JSRef<JSObject>& obj, int32_t maxLength, JsiRef<JsiObject> thisObj) ParseJsSpanBaseVector() argument
1204 auto thisObj = info.This(); ReplaceSpanString() local
1234 auto thisObj = info.This(); InsertSpanString() local
1256 auto thisObj = info.This(); AppendSpanString() local
[all...]

Completed in 19 milliseconds

12