Lines Matching defs:declaredNumArgs
390 if (declaredNumArgs >= ActualNumArgsOfCall::CALLARG1) { \
401 if (declaredNumArgs >= ActualNumArgsOfCall::CALLARGS2) { \
413 if (declaredNumArgs >= ActualNumArgsOfCall::CALLARGS3) { \
425 int num = std::min(actualNumArgs, declaredNumArgs); \
437 int num = std::min(actualNumArgs, declaredNumArgs); \
449 int num = std::min(actualNumArgs, declaredNumArgs); \
462 int num = std::min(actualNumArgs, declaredNumArgs); \
480 int32_t declaredNumArgs = \
482 if (actualNumArgs == declaredNumArgs) { \
489 /* push length = declaredNumArgs, may push undefined */ \
490 CALL_PUSH_UNDEFINED(declaredNumArgs - actualNumArgs); \
495 CALL_PUSH_UNDEFINED(declaredNumArgs - actualNumArgs); \
509 int32_t declaredNumArgs = \
511 if (actualNumArgs == declaredNumArgs) { \
518 /* push length = declaredNumArgs, may push undefined */ \
519 CALL_PUSH_UNDEFINED(declaredNumArgs - actualNumArgs); \
524 CALL_PUSH_UNDEFINED(declaredNumArgs - actualNumArgs); \
681 int32_t declaredNumArgs = static_cast<int32_t>(method->GetNumArgsWithCallField());
683 if (actualNumArgs == declaredNumArgs) {
692 // push length = declaredNumArgs, may push undefined
693 if (declaredNumArgs > actualNumArgs) {
694 CALL_PUSH_UNDEFINED(declaredNumArgs - actualNumArgs);
696 for (int32_t i = std::min(actualNumArgs, declaredNumArgs) - 1; i >= 0; i--) {
704 if (declaredNumArgs > actualNumArgs) {
705 CALL_PUSH_UNDEFINED(declaredNumArgs - actualNumArgs);
7879 // If not, then actualNumArgs == declaredNumArgs, therefore do nothing