Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for TypeArgs (0.23 sec)

  1. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertThat(parameters).hasSize(1);
        TypeToken<?> parameterType = parameters.get(0).getType();
        Type[] typeArgs = ((ParameterizedType) parameterType.getType()).getActualTypeArguments();
        assertThat(typeArgs).asList().hasSize(1);
        TypeVariable<?> captured = (TypeVariable<?>) typeArgs[0];
        assertThat(captured.getBounds()).asList().containsExactly(Object.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. src/go/types/typexpr.go

    		// and so it must be resolved during type-checking so that we can report
    		// errors.
    		check.recordInstance(ix.Orig, inst.TypeArgs().list(), inst)
    
    		if check.validateTArgLen(ix.Pos(), inst.obj.name, inst.TypeParams().Len(), inst.TypeArgs().Len()) {
    			if i, err := check.verify(ix.Pos(), inst.TypeParams().list(), inst.TypeArgs().list(), check.context()); err != nil {
    				// best position for error reporting
    				pos := ix.Pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/named.go

    // t must not have type arguments.
    func (t *Named) SetTypeParams(tparams []*TypeParam) {
    	assert(t.inst == nil)
    	t.resolve().tparams = bindTParams(tparams)
    }
    
    // TypeArgs returns the type arguments used to instantiate the named type t.
    func (t *Named) TypeArgs() *TypeList {
    	if t.inst == nil {
    		return nil
    	}
    	return t.inst.targs
    }
    
    // NumMethods returns the number of explicit methods defined for t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/typeparams/free.go

    			if w.Has(term.Type()) {
    				return true
    			}
    		}
    
    	case *types.Map:
    		return w.Has(t.Key()) || w.Has(t.Elem())
    
    	case *types.Chan:
    		return w.Has(t.Elem())
    
    	case *types.Named:
    		args := t.TypeArgs()
    		// TODO(taking): this does not match go/types/infer.go. Check with rfindley.
    		if params := t.TypeParams(); params.Len() > args.Len() {
    			return true
    		}
    		for i, n := 0, args.Len(); i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/go/types/named.go

    // t must not have type arguments.
    func (t *Named) SetTypeParams(tparams []*TypeParam) {
    	assert(t.inst == nil)
    	t.resolve().tparams = bindTParams(tparams)
    }
    
    // TypeArgs returns the type arguments used to instantiate the named type t.
    func (t *Named) TypeArgs() *TypeList {
    	if t.inst == nil {
    		return nil
    	}
    	return t.inst.targs
    }
    
    // NumMethods returns the number of explicit methods defined for t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typexpr.go

    		// and so it must be resolved during type-checking so that we can report
    		// errors.
    		check.recordInstance(x, inst.TypeArgs().list(), inst)
    
    		if check.validateTArgLen(x.Pos(), inst.obj.name, inst.TypeParams().Len(), inst.TypeArgs().Len()) {
    			if i, err := check.verify(x.Pos(), inst.TypeParams().list(), inst.TypeArgs().list(), check.context()); err != nil {
    				// best position for error reporting
    				pos := x.Pos()
    				if i < len(xlist) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    					addObj(T.Method(i))
    				}
    				if tparams := T.TypeParams(); tparams != nil {
    					for i := 0; i < tparams.Len(); i++ {
    						addType(tparams.At(i))
    					}
    				}
    				if targs := T.TypeArgs(); targs != nil {
    					for i := 0; i < targs.Len(); i++ {
    						addType(targs.At(i))
    					}
    				}
    			}
    		case *types.Pointer:
    			addType(T.Elem())
    		case *types.Slice:
    			addType(T.Elem())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/iexport.go

    //     }
    //
    //     // Instantiation of a generic type (like List[T2] or List[int])
    //     type InstanceType struct {
    //         Tag     itag // instanceType
    //         Pos     pos
    //         TypeArgs []typeOff
    //         BaseType typeOff
    //     }
    //
    //     type UnionType struct {
    //         Tag     itag // interfaceType
    //         Terms   []struct {
    //             tilde bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/validtype.go

    			for i, tparam := range inst.TypeParams().list() {
    				// The type parameter and type argument lists should
    				// match in length but be careful in case of errors.
    				if t == tparam && i < inst.TypeArgs().Len() {
    					targ := inst.TypeArgs().At(i)
    					// The type argument must be valid in the enclosing
    					// type (where inst was instantiated), hence we must
    					// check targ's validity in the type nest excluding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/go/types/validtype.go

    			for i, tparam := range inst.TypeParams().list() {
    				// The type parameter and type argument lists should
    				// match in length but be careful in case of errors.
    				if t == tparam && i < inst.TypeArgs().Len() {
    					targ := inst.TypeArgs().At(i)
    					// The type argument must be valid in the enclosing
    					// type (where inst was instantiated), hence we must
    					// check targ's validity in the type nest excluding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top