Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SetWrapper (0.12 sec)

  1. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

          return wrapped.hashCode();
        }
    
        @Override
        public String toString() {
          return wrapped.toString();
        }
      }
    
      private static class SetWrapper extends Wrapper {
        public SetWrapper(Set<NotInstantiable> wrapped) {
          super(wrapped);
        }
      }
    
      static class InstantiableConstructorChosen {
        final String name;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/stmt.go

    	}
    
    	// Create a new wrapper function without parameters or results.
    	wrapperFn := ir.NewClosureFunc(pos, pos, op, types.NewSignature(nil, nil, nil), ir.CurFunc, Target)
    	wrapperFn.DeclareParams(true)
    	wrapperFn.SetWrapper(true)
    
    	// argps collects the list of operands within the call expression
    	// that must be evaluated at the go/defer statement.
    	var argps []*ir.Node
    
    	var visit func(argp *ir.Node)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/func.go

    func (f *Func) IsPackageInit() bool            { return f.flags&funcPackageInit != 0 }
    
    func (f *Func) SetDupok(b bool)                    { f.flags.set(funcDupok, b) }
    func (f *Func) SetWrapper(b bool)                  { f.flags.set(funcWrapper, b) }
    func (f *Func) SetABIWrapper(b bool)               { f.flags.set(funcABIWrapper, b) }
    func (f *Func) SetNeedctxt(b bool)                 { f.flags.set(funcNeedctxt, b) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top