Lines Matching refs:sb
32 val sb = StringBuilder() in replaceVars() constant
34 sb.append("<section>\n") in replaceVars()
35 sb.append("<h2>Methods</h2>\n") in replaceVars()
36 sb.append(parser.methods.map { MethodElement(it).toHTML() }.joinToString("\n")) in replaceVars()
37 sb.append("\n</section>\n") in replaceVars()
39 sb.toString() in replaceVars()
57 val sb = StringBuilder() in buildDeclaration() constant
58 sb.append("interface ${parser.name}") in buildDeclaration()
60 sb.append(" extends ") in buildDeclaration()
61 if (parser.extendsVersion != null) sb.append("@${parser.extendsVersion}::") in buildDeclaration()
62 sb.append(parser.extendsName) in buildDeclaration()
64 return sb.toString() in buildDeclaration()