Lines Matching refs:args
11 napi_value args[1];
12 status = napi_get_cb_info(env, info, &argc, args, NULL, NULL);
16 status = napi_typeof(env, args[0], types);
23 status = napi_get_value_string_utf8(env, args[0], NULL, 0, &len);
26 status = napi_get_value_string_utf8(env, args[0], buf, len + 1, &len);
38 napi_value args[1];
39 status = napi_get_cb_info(env, info, &argc, args, NULL, NULL);
42 napi_value array = args[0];
68 napi_value args[1];
69 status = napi_get_cb_info(env, info, &argc, args, NULL, NULL);
73 status = napi_typeof(env, args[0], types);
79 status = napi_get_value_double(env, args[0], &value);
90 napi_value args[1];
91 status = napi_get_cb_info(env, info, &argc, args, NULL, NULL);
95 status = napi_typeof(env, args[0], types);
102 status = napi_get_named_property(env, args[0], "map", &value);
105 status = napi_get_named_property(env, args[0], "operand", &value);
108 status = napi_get_named_property(env, args[0], "data", &value);
111 status = napi_get_named_property(env, args[0], "reduce", &value);
122 napi_value args[1];
123 status = napi_get_cb_info(env, info, &argc, args, NULL, NULL);
127 status = napi_is_typedarray(env, args[0], &is_typedarray);
136 status = napi_get_typedarray_info(env, args[0], &type, &length,
158 napi_value args[1000];
163 status = napi_get_cb_info(env, info, &argc, args, NULL, NULL);
168 status = napi_typeof(env, args[0], types);
174 status = napi_get_value_uint32(env, args[0], &loop);
180 status = napi_typeof(env, args[i], types);
185 status = napi_get_value_uint32(env, args[i], &value);