Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 91 for interfaceType (0.2 sec)

  1. src/cmd/link/internal/ld/decodesym.go

    	return int(decodeInuxi(arch, p[commonsize(arch):], 2))
    }
    
    func decodetypeFuncOutCount(arch *sys.Arch, p []byte) int {
    	return int(uint16(decodeInuxi(arch, p[commonsize(arch)+2:], 2)) & (1<<15 - 1))
    }
    
    // InterfaceType.methods.length
    func decodetypeIfaceMethodCount(arch *sys.Arch, p []byte) int64 {
    	return int64(decodeInuxi(arch, p[commonsize(arch)+2*arch.PtrSize:], arch.PtrSize))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        FreshValueGenerator generator =
            new FreshValueGenerator() {
              @Override
              @CheckForNull
              Object interfaceMethodCalled(Class<?> interfaceType, Method method) {
                return getDummyValue(TypeToken.of(interfaceType).method(method).getReturnType());
              }
            };
        for (Entry<Class<?>, Collection<Object>> entry : distinctValues.asMap().entrySet()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                    } catch (NoSuchMethodException e) {
                        // ignore
                    }
                    for (Class<?> interfaceType : c.getInterfaces()) {
                        queue.addFirst(interfaceType);
                    }
                    if (c.getSuperclass() != null) {
                        queue.addFirst(c.getSuperclass());
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/parser.go

    		// or a function defined in a different package,
    		// or a type$equal or type$hash function.
    		// We only want to record exported functions.
    		return nil
    	}
    
    	return f
    }
    
    // InterfaceType = "interface" "{" { ("?" Type | Func) ";" } "}" .
    func (p *parser) parseInterfaceType(pkg *types.Package, nlist []any) types.Type {
    	p.expectKeyword("interface")
    
    	t := new(types.Interface)
    	p.update(t, nlist)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                        }
                    }
                }
    
                // Check if type extends Factory<? extends ElementType>
                for (Type interfaceType : c.getGenericInterfaces()) {
                    if (isFactory(interfaceType, elementType)) {
                        return true;
                    }
                }
    
                return false;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/go/ast/filter.go

    			t.Incomplete = true
    		}
    		return len(t.Fields.List) > 0
    	case *FuncType:
    		b1 := filterParamList(t.Params, f, export)
    		b2 := filterParamList(t.Results, f, export)
    		return b1 || b2
    	case *InterfaceType:
    		if filterFieldList(t.Methods, f, export) {
    			t.Incomplete = true
    		}
    		return len(t.Methods.List) > 0
    	case *MapType:
    		b1 := filterType(t.Key, f, export)
    		b2 := filterType(t.Value, f, export)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/ast.go

    			f.walk(tparams, ctxParam, visit)
    		}
    		f.walk(n.Params, ctxParam, visit)
    		if n.Results != nil {
    			f.walk(n.Results, ctxParam, visit)
    		}
    	case *ast.InterfaceType:
    		f.walk(n.Methods, ctxField, visit)
    	case *ast.MapType:
    		f.walk(&n.Key, ctxType, visit)
    		f.walk(&n.Value, ctxType, visit)
    	case *ast.ChanType:
    		f.walk(&n.Value, ctxType, visit)
    
    	case *ast.BadStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    	case *ast.FuncType:
    		if tparams := n.TypeParams; tparams != nil {
    			a.apply(n, "TypeParams", nil, tparams)
    		}
    		a.apply(n, "Params", nil, n.Params)
    		a.apply(n, "Results", nil, n.Results)
    
    	case *ast.InterfaceType:
    		a.apply(n, "Methods", nil, n.Methods)
    
    	case *ast.MapType:
    		a.apply(n, "Key", nil, n.Key)
    		a.apply(n, "Value", nil, n.Value)
    
    	case *ast.ChanType:
    		a.apply(n, "Value", nil, n.Value)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/fix/fix.go

    			walkBeforeAfter(&n.TypeParams, before, after)
    		}
    		walkBeforeAfter(&n.Params, before, after)
    		if n.Results != nil {
    			walkBeforeAfter(&n.Results, before, after)
    		}
    	case *ast.InterfaceType:
    		walkBeforeAfter(&n.Methods, before, after)
    	case *ast.MapType:
    		walkBeforeAfter(&n.Key, before, after)
    		walkBeforeAfter(&n.Value, before, after)
    	case *ast.ChanType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  10. src/go/printer/testdata/parser.go

    	spec := &ast.Field{doc, idents, typ, nil, p.lineComment}
    	p.declare(spec, scope, ast.Fun, idents...)
    
    	return spec
    }
    
    func (p *parser) parseInterfaceType() *ast.InterfaceType {
    	if p.trace {
    		defer un(trace(p, "InterfaceType"))
    	}
    
    	pos := p.expect(token.INTERFACE)
    	lbrace := p.expect(token.LBRACE)
    	scope := ast.NewScope(nil) // interface scope
    	var list []*ast.Field
    	for p.tok == token.IDENT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
Back to top