Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for LookupMethod (0.16 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                }
                return null;
            }
    
            @Nullable
            @Override
            protected MetaMethod lookupMethod(MetaClass metaClass, String name, Class[] arguments) {
                MetaMethod metaMethod = super.lookupMethod(metaClass, name, arguments);
                if (metaMethod != null) {
                    return metaMethod;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. src/go/types/typeset.go

    // The methods are ordered by their unique ID.
    func (s *_TypeSet) Method(i int) *Func { return s.methods[i] }
    
    // LookupMethod returns the index of and method with matching package and name, or (-1, nil).
    func (s *_TypeSet) LookupMethod(pkg *Package, name string, foldCase bool) (int, *Func) {
    	return methodIndex(s.methods, pkg, name, foldCase)
    }
    
    func (s *_TypeSet) String() string {
    	switch {
    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/types2/typeset.go

    // The methods are ordered by their unique ID.
    func (s *_TypeSet) Method(i int) *Func { return s.methods[i] }
    
    // LookupMethod returns the index of and method with matching package and name, or (-1, nil).
    func (s *_TypeSet) LookupMethod(pkg *Package, name string, foldCase bool) (int, *Func) {
    	return methodIndex(s.methods, pkg, name, foldCase)
    }
    
    func (s *_TypeSet) String() string {
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/lookup.go

    					// this same type at the current depth, so we can ignore
    					// this one.
    					continue
    				}
    				seen.add(named)
    
    				// look for a matching attached method
    				if i, m := named.lookupMethod(pkg, name, foldCase); m != nil {
    					// potential match
    					// caution: method may not have a proper signature yet
    					index = concat(e.index, i)
    					if obj != nil || e.multiples {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/go/types/lookup.go

    					// this same type at the current depth, so we can ignore
    					// this one.
    					continue
    				}
    				seen.add(named)
    
    				// look for a matching attached method
    				if i, m := named.lookupMethod(pkg, name, foldCase); m != nil {
    					// potential match
    					// caution: method may not have a proper signature yet
    					index = concat(e.index, i)
    					if obj != nil || e.multiples {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/named.go

    		if n.obj.pkg != check.pkg {
    			panic("imported type with unresolved underlying type")
    		}
    		n.underlying = u
    	}
    
    	return u
    }
    
    func (n *Named) lookupMethod(pkg *Package, name string, foldCase bool) (int, *Func) {
    	n.resolve()
    	if samePkg(n.obj.pkg, pkg) || isExported(name) || foldCase {
    		// If n is an instance, we may not have yet instantiated all of its methods.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/go/types/named.go

    		if n.obj.pkg != check.pkg {
    			panic("imported type with unresolved underlying type")
    		}
    		n.underlying = u
    	}
    
    	return u
    }
    
    func (n *Named) lookupMethod(pkg *Package, name string, foldCase bool) (int, *Func) {
    	n.resolve()
    	if samePkg(n.obj.pkg, pkg) || isExported(name) || foldCase {
    		// If n is an instance, we may not have yet instantiated all of its methods.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top