Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for parseParamList (0.16 sec)

  1. src/syscall/mksyscall_libc.pl

    		$errors = 1;
    		next;
    	}
    	my ($nb, $func, $in, $out, $modname, $sysname) = ($1, $2, $3, $4, $5, $6);
    
    	# Split argument lists on comma.
    	my @in = parseparamlist($in);
    	my @out = parseparamlist($out);
    
    	# Try in vain to keep people from editing this file.
    	# The theory is that they jump into the middle of the file
    	# without reading the header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/syscall/mksyscall.pl

    		print STDERR "$ARGV:$.: malformed //sys declaration\n";
    		$errors = 1;
    		next;
    	}
    	my ($func, $in, $out, $sysname) = ($2, $3, $4, $5);
    
    	# Split argument lists on comma.
    	my @in = parseparamlist($in);
    	my @out = parseparamlist($out);
    
    	# Try in vain to keep people from editing this file.
    	# The theory is that they jump into the middle of the file
    	# without reading the header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/parser.go

    	case '(':
    		params, _ := p.parseParamList(pkg)
    		return params
    
    	default:
    		return nil
    	}
    }
    
    // FunctionType = ParamList ResultList .
    func (p *parser) parseFunctionType(pkg *types.Package, nlist []any) *types.Signature {
    	t := new(types.Signature)
    	p.update(t, nlist)
    
    	params, isVariadic := p.parseParamList(pkg)
    	results := p.parseResultList(pkg)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top