Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 165 for synthetic (2.08 sec)

  1. guava-testlib/src/com/google/common/testing/NullPointerTester.java

            if (!Reflection.getPackageName(type).equals(visiblePackage)) {
              break;
            }
            for (Method method : type.getDeclaredMethods()) {
              if (!method.isSynthetic() && isVisible(method)) {
                builder.add(method);
              }
            }
          }
          return builder.build();
        }
      }
    
      private static final class Signature {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

            if (!Reflection.getPackageName(type).equals(visiblePackage)) {
              break;
            }
            for (Method method : type.getDeclaredMethods()) {
              if (!method.isSynthetic() && isVisible(method)) {
                builder.add(method);
              }
            }
          }
          return builder.build();
        }
      }
    
      private static final class Signature {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        }
    
        /**
         * {@link PropertyDesc}を準備します。
         */
        protected void setupPropertyDescs() {
            for (final Method m : beanClass.getMethods()) {
                if (m.isBridge() || m.isSynthetic()) {
                    continue;
                }
                final String methodName = m.getName();
                if (methodName.startsWith("get")) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

                    break;
                }
            }
        }
    
        private void setupValueOfMethod() {
            for (final Method method : propertyType.getMethods()) {
                if (method.isBridge() || method.isSynthetic()) {
                    continue;
                }
                if (ModifierUtil.isStatic(method.getModifiers()) && method.getName().equals("valueOf") && method.getParameterTypes().length == 1
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typestring.go

    	case *Pointer:
    		w.byte('*')
    		w.typ(t.base)
    
    	case *Tuple:
    		w.tuple(t, false)
    
    	case *Signature:
    		w.string("func")
    		w.signature(t)
    
    	case *Union:
    		// Unions only appear as (syntactic) embedded elements
    		// in interfaces and syntactically cannot be empty.
    		if t.Len() == 0 {
    			w.error("empty union")
    			break
    		}
    		for i, t := range t.terms {
    			if i > 0 {
    				w.string(termSep)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/go/types/typestring.go

    	case *Pointer:
    		w.byte('*')
    		w.typ(t.base)
    
    	case *Tuple:
    		w.tuple(t, false)
    
    	case *Signature:
    		w.string("func")
    		w.signature(t)
    
    	case *Union:
    		// Unions only appear as (syntactic) embedded elements
    		// in interfaces and syntactically cannot be empty.
    		if t.Len() == 0 {
    			w.error("empty union")
    			break
    		}
    		for i, t := range t.terms {
    			if i > 0 {
    				w.string(termSep)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/decl.go

    			// package-level objects, use the object map which
    			// provides syntactic information (which doesn't rely
    			// on the order in which the objects are set up). For
    			// local objects, we can rely on the order, so use
    			// the object's predicate.
    			// TODO(gri) It would be less fragile to always access
    			// the syntactic information. We should consider storing
    			// this information explicitly in the object.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. src/go/types/stmt.go

    		check.simpleStmt(s.Init)
    
    		// A type switch guard must be of the form:
    		//
    		//     TypeSwitchGuard = [ identifier ":=" ] PrimaryExpr "." "(" "type" ")" .
    		//
    		// The parser is checking syntactic correctness;
    		// remaining syntactic errors are considered AST errors here.
    		// TODO(gri) better factoring of error handling (invalid ASTs)
    		//
    		var lhs *ast.Ident // lhs identifier or nil
    		var rhs ast.Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. src/go/types/decl.go

    			// package-level objects, use the object map which
    			// provides syntactic information (which doesn't rely
    			// on the order in which the objects are set up). For
    			// local objects, we can rely on the order, so use
    			// the object's predicate.
    			// TODO(gri) It would be less fragile to always access
    			// the syntactic information. We should consider storing
    			// this information explicitly in the object.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

            continue;
          }
        }
        return false;
      }
    
      private static boolean isEqualsDefined(Class<?> cls) {
        try {
          return !cls.getDeclaredMethod("equals", Object.class).isSynthetic();
        } catch (NoSuchMethodException e) {
          return false;
        }
      }
    
      abstract static class Chopper {
    
        final Chopper or(Chopper you) {
          Chopper i = this;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top