Home
last modified time | relevance | path

Searched refs:typeVars (Results 1 – 2 of 2) sorted by relevance

/build/tools/droiddoc/src/
DTypeInfo.java69 public static String typeArgumentsName(TypeInfo[] args, HashSet<String> typeVars) in typeArgumentsName() argument
73 result += args[i].fullName(typeVars); in typeArgumentsName()
82 public String fullName(HashSet<String> typeVars) in fullName() argument
84 mFullName = fullNameNoDimension(typeVars) + mDimension; in fullName()
88 public String fullNameNoDimension(HashSet<String> typeVars) in fullNameNoDimension() argument
92 if (typeVars.contains(mQualifiedTypeName)) { in fullNameNoDimension()
97 typeVars.add(mQualifiedTypeName); in fullNameNoDimension()
106 fullName += typeArgumentsName(mTypeArguments, typeVars); in fullNameNoDimension()
109 fullName += " super " + mSuperBounds[0].fullName(typeVars); in fullNameNoDimension()
111 fullName += " & " + mSuperBounds[i].fullName(typeVars); in fullNameNoDimension()
[all …]
DMethodInfo.java612 public String typeArgumentsName(HashSet<String> typeVars) in typeArgumentsName() argument
617 return TypeInfo.typeArgumentsName(mTypeParameters, typeVars); in typeArgumentsName()