Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ParamNames (0.16 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

                macroFunctions.add(new ReturnFixedValueMacroFunction(macroName, paramNames.size(), expression.getType(), expression.getValue(), Collections.<Expression>emptyList()));
                return;
            }
            if (expression.getType() == IncludeType.IDENTIFIER) {
                for (int i = 0; i < paramNames.size(); i++) {
                    String name = paramNames.get(i);
                    if (name.equals(expression.getValue())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typestring.go

    type typeWriter struct {
    	buf          *bytes.Buffer
    	seen         map[Type]bool
    	qf           Qualifier
    	ctxt         *Context       // if non-nil, we are type hashing
    	tparams      *TypeParamList // local type parameters
    	paramNames   bool           // if set, write function parameter names, otherwise, write types only
    	tpSubscripts bool           // if set, write type parameter indices as subscripts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/go/types/typestring.go

    type typeWriter struct {
    	buf          *bytes.Buffer
    	seen         map[Type]bool
    	qf           Qualifier
    	ctxt         *Context       // if non-nil, we are type hashing
    	tparams      *TypeParamList // local type parameters
    	paramNames   bool           // if set, write function parameter names, otherwise, write types only
    	tpSubscripts bool           // if set, write type parameter indices as subscripts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/main.go

    			paramNamesString = strings.TrimSpace(paramNamesString)
    			if paramNamesString == "" {
    				return nil
    			}
    			paramNames := strings.Split(paramNamesString, " ")
    			var paramRegs []int8
    			for _, regName := range paramNames {
    				if regName == "" {
    					// forgive extra spaces
    					continue
    				}
    				if regNum, ok := num[regName]; ok {
    					paramRegs = append(paramRegs, regNum)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. src/cmd/cgo/out.go

    	inProlog := builtinDefs[name] != ""
    	cname := fmt.Sprintf("_cgo%s%s", cPrefix, n.Mangle)
    	paramnames := []string(nil)
    	if d.Type.Params != nil {
    		for i, param := range d.Type.Params.List {
    			paramName := fmt.Sprintf("p%d", i)
    			param.Names = []*ast.Ident{ast.NewIdent(paramName)}
    			paramnames = append(paramnames, paramName)
    		}
    	}
    
    	if *gccgo {
    		// Gccgo style hooks.
    		fmt.Fprint(fgo2, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/abi.go

    		// to special registers (X15) when returning to ABIInternal.
    		tailcall = false
    	}
    
    	var tail ir.Node
    	call := ir.NewCallExpr(base.Pos, ir.OCALL, f.Nname, nil)
    	call.Args = ir.ParamNames(fn.Type())
    	call.IsDDD = fn.Type().IsVariadic()
    	tail = call
    	if tailcall {
    		tail = ir.NewTailCallStmt(base.Pos, call)
    	} else if fn.Type().NumResults() > 0 {
    		n := ir.NewReturnStmt(base.Pos, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/lookup.go

    	buf := bytes.NewBufferString(f.name)
    	var qf Qualifier
    	if check != nil && !pkgInfo {
    		qf = check.qualifier
    	}
    	w := newTypeWriter(buf, qf)
    	w.pkgInfo = pkgInfo
    	w.paramNames = false
    	w.signature(f.typ.(*Signature))
    	return buf.String()
    }
    
    // assertableTo reports whether a value of type V can be asserted to have type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. src/go/types/lookup.go

    	buf := bytes.NewBufferString(f.name)
    	var qf Qualifier
    	if check != nil && !pkgInfo {
    		qf = check.qualifier
    	}
    	w := newTypeWriter(buf, qf)
    	w.pkgInfo = pkgInfo
    	w.paramNames = false
    	w.signature(f.typ.(*Signature))
    	return buf.String()
    }
    
    // assertableTo reports whether a value of type V can be asserted to have type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top