Home
last modified time | relevance | path

Searched refs:superBounds (Results 1 – 5 of 5) sorted by relevance

/external/doclava/src/com/google/doclava/
DTypeInfo.java147 if (other.superBounds() != null) { in TypeInfo()
148 mSuperBounds = new ArrayList<TypeInfo>(other.superBounds()); in TypeInfo()
373 public void setBounds(ArrayList<TypeInfo> superBounds, ArrayList<TypeInfo> extendsBounds) { in setBounds() argument
374 mSuperBounds = superBounds; in setBounds()
378 public ArrayList<TypeInfo> superBounds() { in superBounds() method in TypeInfo
DInfoBuilder.java299 if (type.superBounds() != null && !type.superBounds().isEmpty()) { in printTypeName()
301 for (TypeInfo t : type.superBounds()) { in printTypeName()
302 if (t != type.superBounds().get(0)) { in printTypeName()
716 newType.setBounds(type.superBounds(), type.extendsBounds()); in buildFields()
890 ArrayList<TypeInfo> superBounds = new ArrayList<TypeInfo>(); in buildTypeVariables() local
942 superBounds.add(buildType((ParseTree) typeParameter.getChild(2))); in buildTypeVariables()
947 type.setBounds(superBounds, extendsBounds); in buildTypeVariables()
DConverter.java622 …s(new ArrayList<TypeInfo>(Arrays.asList(Converter.convertTypes(t.asWildcardType().superBounds()))),
656 if (t.asWildcardType().superBounds() != null) {
657 for (Type ty : t.asWildcardType().superBounds()) {
/external/doclava/res/assets/templates/
Dmacros.cs26 .superBounds.N.(more links) (... super ... & ...)
45 if:subcount(type.superBounds) ?><?cs
46 each:t=type.superBounds ?><?cs
/external/dokka/core/src/main/kotlin/javadoc/
Ddocbase.kt223 …override fun superBounds(): Array<out Type> = node.details(NodeKind.LowerBound).map { TypeAdapter(… in underlyingType() method