Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 210 for predeclared (0.33 sec)

  1. src/go/types/predicates.go

    		return tpar.is(func(t *term) bool { return t != nil && isBasic(t.typ, info) })
    	}
    	return isBasic(t, info)
    }
    
    // hasName reports whether t has a name. This includes
    // predeclared types, defined types, and type parameters.
    // hasName may be called with types that are not fully set up.
    func hasName(t Type) bool {
    	switch Unalias(t).(type) {
    	case *Basic, *Named, *TypeParam:
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/predicates.go

    		return tpar.is(func(t *term) bool { return t != nil && isBasic(t.typ, info) })
    	}
    	return isBasic(t, info)
    }
    
    // hasName reports whether t has a name. This includes
    // predeclared types, defined types, and type parameters.
    // hasName may be called with types that are not fully set up.
    func hasName(t Type) bool {
    	switch Unalias(t).(type) {
    	case *Basic, *Named, *TypeParam:
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. src/runtime/panic.go

    }
    
    func (*PanicNilError) Error() string { return "panic called with nil argument" }
    func (*PanicNilError) RuntimeError() {}
    
    var panicnil = &godebugInc{name: "panicnil"}
    
    // The implementation of the predeclared function panic.
    // The compiler emits calls to this function.
    //
    // gopanic should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/object.go

    	object
    	id builtinId
    }
    
    func newBuiltin(id builtinId) *Builtin {
    	return &Builtin{object{name: predeclaredFuncs[id].name, typ: Typ[Invalid], color_: black}, id}
    }
    
    // Nil represents the predeclared value nil.
    type Nil struct {
    	object
    }
    
    func writeObject(buf *bytes.Buffer, obj Object, qf Qualifier) {
    	var tname *TypeName
    	typ := obj.Type()
    
    	switch obj := obj.(type) {
    	case *PkgName:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. src/math/bits/bits.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run make_tables.go
    
    // Package bits implements bit counting and manipulation
    // functions for the predeclared unsigned integer types.
    //
    // Functions in this package may be implemented directly by
    // the compiler, for better performance. For those functions
    // the code in this package will not be used. Which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/go/types/object.go

    	object
    	id builtinId
    }
    
    func newBuiltin(id builtinId) *Builtin {
    	return &Builtin{object{name: predeclaredFuncs[id].name, typ: Typ[Invalid], color_: black}, id}
    }
    
    // Nil represents the predeclared value nil.
    type Nil struct {
    	object
    }
    
    func writeObject(buf *bytes.Buffer, obj Object, qf Qualifier) {
    	var tname *TypeName
    	typ := obj.Type()
    
    	switch obj := obj.(type) {
    	case *PkgName:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. src/cmd/internal/goobj/objfile.go

    // object file.
    
    // Symbol indexing.
    //
    // Each symbol is referenced with a pair of indices, { PkgIdx, SymIdx },
    // as the symRef struct above.
    //
    // PkgIdx is either a predeclared index (see PkgIdxNone below) or
    // an index of an imported package. For the latter case, PkgIdx is the
    // index of the package in the PkgIndex array. 0 is an invalid index.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/subr.go

    	if src.IsChan() && src.ChanDir() == types.Cboth && dst.IsChan() {
    		if types.Identical(src.Elem(), dst.Elem()) && (src.Sym() == nil || dst.Sym() == nil) {
    			return ir.OCONVNOP, ""
    		}
    	}
    
    	// 5. src is the predeclared identifier nil and dst is a nillable type.
    	if src.Kind() == types.TNIL {
    		switch dst.Kind() {
    		case types.TPTR,
    			types.TFUNC,
    			types.TMAP,
    			types.TCHAN,
    			types.TINTER,
    			types.TSLICE:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/func.go

    	default:
    		n.SetOp(ir.OCALLFUNC)
    		if t.Kind() != types.TFUNC {
    			if o := l; o.Name() != nil && types.BuiltinPkg.Lookup(o.Sym().Name).Def != nil {
    				// be more specific when the non-function
    				// name matches a predeclared function
    				base.Errorf("cannot call non-function %L, declared at %s",
    					l, base.FmtPos(o.Name().Pos()))
    			} else {
    				base.Errorf("cannot call non-function %L", l)
    			}
    			n.SetType(nil)
    			return n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. src/go/types/stmt.go

    					err.report()
    					continue L
    				}
    			}
    			seen[val] = append(seen[val], valueType{v.Pos(), v.typ})
    		}
    	}
    }
    
    // isNil reports whether the expression e denotes the predeclared value nil.
    func (check *Checker) isNil(e ast.Expr) bool {
    	// The only way to express the nil value is by literally writing nil (possibly in parentheses).
    	if name, _ := ast.Unparen(e).(*ast.Ident); name != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top