Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for AllMethods (0.29 sec)

  1. src/cmd/compile/internal/types2/typeset.go

    	// position.
    
    	var seen objset
    	var allMethods []*Func
    	mpos := make(map[*Func]syntax.Pos) // method specification or method embedding position, for good error messages
    	addMethod := func(pos syntax.Pos, m *Func, explicit bool) {
    		switch other := seen.insert(m); {
    		case other == nil:
    			allMethods = append(allMethods, m)
    			mpos[m] = pos
    		case explicit:
    			if check != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/go/types/typeset.go

    	// position.
    
    	var seen objset
    	var allMethods []*Func
    	mpos := make(map[*Func]token.Pos) // method specification or method embedding position, for good error messages
    	addMethod := func(pos token.Pos, m *Func, explicit bool) {
    		switch other := seen.insert(m); {
    		case other == nil:
    			allMethods = append(allMethods, m)
    			mpos[m] = pos
    		case explicit:
    			if check != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/subr.go

    func implements(t, iface *types.Type, m, samename **types.Field, ptr *int) bool {
    	t0 := t
    	if t == nil {
    		return false
    	}
    
    	if t.IsInterface() {
    		i := 0
    		tms := t.AllMethods()
    		for _, im := range iface.AllMethods() {
    			for i < len(tms) && tms[i].Sym != im.Sym {
    				i++
    			}
    			if i == len(tms) {
    				*m = im
    				*samename = nil
    				*ptr = 0
    				return false
    			}
    			tm := tms[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. src/go/doc/doc.go

    const (
    	// AllDecls says to extract documentation for all package-level
    	// declarations, not just exported ones.
    	AllDecls Mode = 1 << iota
    
    	// AllMethods says to show all embedded methods, not just the ones of
    	// invisible (unexported) anonymous fields.
    	AllMethods
    
    	// PreserveAST says to leave the AST unmodified. Originally, pieces of
    	// the AST such as function bodies were nil-ed out to save memory in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/go/doc/reader.go

    			Methods: sortedFuncs(t.methods, allMethods),
    		}
    		i++
    	}
    
    	slices.SortFunc(list, func(a, b *Type) int {
    		return strings.Compare(a.Name, b.Name)
    	})
    
    	return list
    }
    
    func removeStar(s string) string {
    	if len(s) > 0 && s[0] == '*' {
    		return s[1:]
    	}
    	return s
    }
    
    func sortedFuncs(m methodSet, allMethods bool) []*Func {
    	list := make([]*Func, len(m))
    	i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/fmt.go

    		tconv2(b, t.Elem(), 0, mode, visited)
    
    	case TINTER:
    		if t.IsEmptyInterface() {
    			b.WriteString("interface {}")
    			break
    		}
    		b.WriteString("interface {")
    		for i, f := range t.AllMethods() {
    			if i != 0 {
    				b.WriteByte(';')
    			}
    			b.WriteByte(' ')
    			switch {
    			case f.Sym == nil:
    				// Check first that a symbol is defined for this type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/size.go

    		// by types2 already, so allow non-interface here.
    		if !m.Type.IsInterface() {
    			continue
    		}
    
    		// Embedded interface: duplicate all methods
    		// and add to t's method set.
    		for _, t1 := range m.Type.AllMethods() {
    			f := NewField(m.Pos, t1.Sym, t1.Type)
    			addMethod(f, false)
    
    			// Clear position after typechecking, for consistency with types2.
    			f.Pos = src.NoXPos
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

         */
        private
        fun readObjectMethodHierarchyForDecoding(type: Class<*>): List<Method> =
            readObjectHierarchy.computeIfAbsent(type) {
                readObjectMethodHierarchyFrom(it.allMethods())
            }
    }
    
    
    internal
    fun Method.isReadResolve() =
        !isStatic(modifiers)
            && parameterCount == 0
            && returnType == java.lang.Object::class.java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/typecheck.go

    	// Compute the method set for recv.
    	var ms []*types.Field
    	if recv.IsInterface() {
    		ms = recv.AllMethods()
    	} else {
    		mt := types.ReceiverBaseType(recv)
    		if mt == nil {
    			base.FatalfAt(pos, "type %v has no receiver base type", recv)
    		}
    		CalcMethods(mt)
    		ms = mt.AllMethods()
    	}
    
    	m := Lookdot1(nil, sym, recv, ms, 0)
    	if m == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top