Home
last modified time | relevance | path

Searched defs:interfaceBounds (Results 1 – 3 of 3) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/util/reflection/
DGenericMetadataSupport.java523 Type[] interfaceBounds(); in interfaceBounds() method
567 public Type[] interfaceBounds() { in interfaceBounds() method in GenericMetadataSupport.TypeVarBoundedType
568 Type[] interfaceBounds = new Type[typeVariable.getBounds().length - 1]; in interfaceBounds() local
569 …System.arraycopy(typeVariable.getBounds(), 1, interfaceBounds, 0, typeVariable.getBounds().length … in interfaceBounds() local
626 public Type[] interfaceBounds() { in interfaceBounds() method in GenericMetadataSupport.WildCardBoundedType
/external/turbine/java/com/google/turbine/bytecode/sig/
DSig.java63 private final ImmutableList<TySig> interfaceBounds; field in Sig.TyParamSig
65 public TyParamSig(String name, TySig classBound, ImmutableList<TySig> interfaceBounds) { in TyParamSig()
78 public ImmutableList<TySig> interfaceBounds() { in interfaceBounds() method in Sig.TyParamSig
DSigParser.java136 ImmutableList.Builder<TySig> interfaceBounds = ImmutableList.builder(); in parseTyParams() local