Home
last modified time | relevance | path

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

/external/javassist/src/main/javassist/bytecode/
DDescriptor.java241 toDescriptor(sbuf, type); in of()
245 private static void toDescriptor(StringBuffer desc, CtClass type) { in toDescriptor() method in Descriptor
249 toDescriptor(desc, type.getComponentType()); in toDescriptor()
292 toDescriptor(desc, paramTypes[i]); in ofMethod()
297 toDescriptor(desc, returnType); in ofMethod()
366 toDescriptor(newdesc, type); in appendParameter()
/external/dokka/core/src/main/kotlin/Kotlin/
DDocumentationBuilder.kt146 …fun link(fromDescriptor: DeclarationDescriptor?, toDescriptor: DeclarationDescriptor?, kind: RefKi… in link()
147 if (fromDescriptor != null && toDescriptor != null) { in link()
148 refGraph.link(fromDescriptor.signature(), toDescriptor.signature(), kind) in link()