Lines Matching defs:NumArgs
423 Parser::parseCommandArgs(TextTokenRetokenizer &Retokenizer, unsigned NumArgs) {
424 auto *Args = new (Allocator.Allocate<Comment::Argument>(NumArgs))
425 Comment::Argument[NumArgs];
428 while (ParsedArgs < NumArgs && Retokenizer.lexWord(Arg)) {
439 unsigned NumArgs) {
440 auto *Args = new (Allocator.Allocate<Comment::Argument>(NumArgs))
441 Comment::Argument[NumArgs];
445 while (ParsedArgs < NumArgs && Retokenizer.lexType(Arg)) {
456 unsigned NumArgs) {
457 assert(NumArgs > 0);
458 auto *Args = new (Allocator.Allocate<Comment::Argument>(NumArgs))
459 Comment::Argument[NumArgs];
463 while (ParsedArgs < NumArgs && Retokenizer.lexParHeading(Arg)) {
515 if (PC || TPC || Info->NumArgs > 0) {
526 BC, parseThrowCommandArgs(Retokenizer, Info->NumArgs));
529 parseParCommandArgs(Retokenizer, Info->NumArgs));
531 S.actOnBlockCommandArgs(BC, parseCommandArgs(Retokenizer, Info->NumArgs));
579 parseCommandArgs(Retokenizer, Info->NumArgs);
585 if (Args.size() < Info->NumArgs) {
589 << Info->NumArgs