Lines Matching refs:thisVar
31 napi_value thisVar;
32 napi_get_cb_info(env, cbinfo, &argc, args, &thisVar, nullptr);
55 DECLARE_NAPI_FUNCTION_WITH_DATA("addTask", AddTask, thisVar),
57 napi_set_named_property(env, thisVar, NAME, name);
58 napi_define_properties(env, thisVar, sizeof(properties) / sizeof(properties[0]), properties);
59 napi_wrap(env, thisVar, group, TaskGroupDestructor, nullptr, nullptr);
60 napi_create_reference(env, thisVar, 0, &group->groupRef_);
61 return thisVar;
85 napi_value thisVar;
86 napi_get_cb_info(env, cbinfo, &argc, args, &thisVar, nullptr);
87 napi_value napiGroupId = NapiHelper::GetNameProperty(env, thisVar, GROUP_ID_STR);