Lines Matching refs:argc
1196 size_t argc,
1205 if (argc > 0) {
1224 function->CallForNapi(vm, thisObj, reinterpret_cast<panda::JSValueRef *const*>(argv), argc);
1241 size_t argc,
1247 if (argc > 0) {
1259 reinterpret_cast<panda::JSValueRef**>(const_cast<napi_value*>(argv)), argc);
1292 size_t* argc, // [in-out] Specifies the size of the provided argv array
1302 if ((argc != nullptr) && (argv != nullptr)) {
1307 if (*argc > 0) {
1309 for (; i < j && i < *argc; i++) {
1319 if (i < *argc) {
1322 for (; i < *argc; i++) {
1327 if (argc != nullptr) {
1328 *argc = static_cast<size_t>(info->GetArgsNumber());