Lines Matching refs:thisVar
30 void SequenceRunner::SeqRunnerConstructorInner(napi_env env, napi_value &thisVar, SequenceRunner *seqRunner)
40 napi_define_properties(env, thisVar, sizeof(properties) / sizeof(properties[0]), properties);
45 napi_wrap(env, thisVar, seqRunner, SequenceRunnerDestructor, nullptr, nullptr);
53 napi_value thisVar;
54 napi_get_cb_info(env, cbinfo, &argc, args, &thisVar, nullptr);
88 seqRunner = SequenceRunnerManager::GetInstance().CreateOrGetGlobalRunner(env, thisVar, argc, name, priority);
96 napi_create_reference(env, thisVar, 0, &seqRunner->seqRunnerRef_);
99 SeqRunnerConstructorInner(env, thisVar, seqRunner);
100 return thisVar;
107 napi_value thisVar;
108 napi_get_cb_info(env, cbinfo, &argc, args, &thisVar, nullptr);
122 napi_value napiSeqRunnerId = NapiHelper::GetNameProperty(env, thisVar, SEQ_RUNNER_ID_STR);